[vim] - patchlevel 762

Karsten Hopp karsten at fedoraproject.org
Mon Jan 28 11:15:55 UTC 2013


commit ef7793c94fb8ea1b6cbbd08e576b191a1e58b8d9
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Jan 28 12:11:26 2013 +0100

    - patchlevel 762

 7.3.762 |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)
---
diff --git a/7.3.762 b/7.3.762
new file mode 100644
index 0000000..5600771
--- /dev/null
+++ b/7.3.762
@@ -0,0 +1,56 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.762
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.762 (after 7.3.759)
+Problem:    On some systems the tabline is not redrawn.
+Solution:   Call RedrawWindow(). (Charles Peacech)
+Files:	    src/gui_w48.c
+
+
+*** ../vim-7.3.761/src/gui_w48.c	2012-12-12 17:12:21.000000000 +0100
+--- src/gui_w48.c	2012-12-16 12:45:47.000000000 +0100
+***************
+*** 2527,2534 ****
+      if (TabCtrl_GetCurSel(s_tabhwnd) != curtabidx)
+  	TabCtrl_SetCurSel(s_tabhwnd, curtabidx);
+  
+!     /* Re-enable redraw. This should trigger a repaint. */
+      SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)TRUE, 0);
+  }
+  
+  /*
+--- 2527,2536 ----
+      if (TabCtrl_GetCurSel(s_tabhwnd) != curtabidx)
+  	TabCtrl_SetCurSel(s_tabhwnd, curtabidx);
+  
+!     /* Re-enable redraw and redraw. */
+      SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)TRUE, 0);
++     RedrawWindow(s_tabhwnd, NULL, NULL,
++ 		    RDW_ERASE | RDW_FRAME | RDW_INVALIDATE | RDW_ALLCHILDREN);
+  }
+  
+  /*
+*** ../vim-7.3.761/src/version.c	2012-12-12 18:20:28.000000000 +0100
+--- src/version.c	2012-12-16 12:46:44.000000000 +0100
+***************
+*** 727,728 ****
+--- 727,730 ----
+  {   /* Add new patch number below this line */
++ /**/
++     762,
+  /**/
+
+-- 
+"The question of whether computers can think is just like the question
+of whether submarines can swim."      -- Edsger W. Dijkstra
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///


More information about the scm-commits mailing list