SOURCES: 7.0.057 (NEW), 7.0.064 (NEW), 7.0.065 (NEW), 7.0.066 (NEW...

havner havner at pld-linux.org
Sat Aug 26 17:28:13 CEST 2006


Author: havner                       Date: Sat Aug 26 15:28:13 2006 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- uncommited patches

---- Files affected:
SOURCES:
   7.0.057 (NONE -> 1.1)  (NEW), 7.0.064 (NONE -> 1.1)  (NEW), 7.0.065 (NONE -> 1.1)  (NEW), 7.0.066 (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/7.0.057
diff -u /dev/null SOURCES/7.0.057:1.1
--- /dev/null	Sat Aug 26 17:28:13 2006
+++ SOURCES/7.0.057	Sat Aug 26 17:28:07 2006
@@ -0,0 +1,74 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.057 (extra)
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.057 (extra, after 7.0.45)
+Problem:    Win32: Compilation problem with Borland C 5.5.
+Solution:   Include vim.h as before. (Mark S. Williams)
+Files:	    src/if_ole.cpp
+
+
+*** ../vim-7.0.056/src/if_ole.cpp	Tue Aug  8 17:06:21 2006
+--- src/if_ole.cpp	Sun Aug 13 12:57:24 2006
+***************
+*** 13,26 ****
+   * See os_mswin.c for the client side.
+   */
+  
+  extern "C" {
+! #include "vim.h"
+  }
+  
+  #include <windows.h>
+  #include <oleauto.h>
+  
+  extern "C" {
+  extern HWND s_hwnd;
+  extern HWND vim_parent_hwnd;
+  }
+--- 13,35 ----
+   * See os_mswin.c for the client side.
+   */
+  
++ /*
++  * We have some trouble with order of includes here.  For Borland it needs to
++  * be different from MSVC...
++  */
++ #ifndef __BORLANDC__
+  extern "C" {
+! # include "vim.h"
+  }
++ #endif
+  
+  #include <windows.h>
+  #include <oleauto.h>
+  
+  extern "C" {
++ #ifdef __BORLANDC__
++ # include "vim.h"
++ #endif
+  extern HWND s_hwnd;
+  extern HWND vim_parent_hwnd;
+  }
+*** ../vim-7.0.056/src/version.c	Wed Aug 16 17:06:22 2006
+--- src/version.c	Wed Aug 16 17:35:57 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     57,
+  /**/
+
+-- 
+Send $25.00 for handy leaflet on how to make money by selling leaflets
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

================================================================
Index: SOURCES/7.0.064
diff -u /dev/null SOURCES/7.0.064:1.1
--- /dev/null	Sat Aug 26 17:28:13 2006
+++ SOURCES/7.0.064	Sat Aug 26 17:28:07 2006
@@ -0,0 +1,66 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.064
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.064
+Problem:    Using uninitialized variable. (Tony Mechelynck)
+Solution:   When not used set "temp" to zero.  Also avoid a warning for
+	    "files" in ins_compl_dictionaries().
+Files:	    src/edit.c
+
+
+*** ../vim-7.0.063/src/edit.c	Wed Aug 16 21:26:19 2006
+--- src/edit.c	Thu Aug 17 22:28:34 2006
+***************
+*** 2760,2765 ****
+--- 2760,2766 ----
+  	}
+  	else
+  # endif
++ 	    if (count > 0)	/* avoid warning for using "files" uninit */
+  	{
+  	    ins_compl_files(count, files, thesaurus, flags,
+  							&regmatch, buf, &dir);
+***************
+*** 3222,3228 ****
+      int	    c;
+  {
+      char_u	*ptr;
+-     int		temp;
+      int		want_cindent;
+      int		retval = FALSE;
+  
+--- 3223,3228 ----
+***************
+*** 3378,3383 ****
+--- 3378,3384 ----
+  	    if (compl_curr_match != NULL || compl_leader != NULL || c == Ctrl_E)
+  	    {
+  		char_u	*p;
++ 		int	temp = 0;
+  
+  		/*
+  		 * If any of the original typed text has been changed, eg when
+*** ../vim-7.0.063/src/version.c	Wed Aug 16 22:03:35 2006
+--- src/version.c	Tue Aug 22 19:56:05 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     64,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+200. You really believe in the concept of a "paperless" office.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

================================================================
Index: SOURCES/7.0.065
diff -u /dev/null SOURCES/7.0.065:1.1
--- /dev/null	Sat Aug 26 17:28:13 2006
+++ SOURCES/7.0.065	Sat Aug 26 17:28:07 2006
@@ -0,0 +1,52 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.065 (extra)
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.065 (extra)
+Problem:    Mac: left-right movement of the scrollwheel causes up-down
+	    scrolling.
+Solution:   Ignore mouse wheel events that are not up-down. (Nicolas Weber)
+Files:	    src/gui_mac.c
+
+
+*** ../vim-7.0.064/src/gui_mac.c	Wed May  3 00:03:26 2006
+--- src/gui_mac.c	Tue Aug 22 13:41:12 2006
+***************
+*** 2480,2485 ****
+--- 2480,2491 ----
+      UInt32	mod;
+      SInt32	delta;
+      int_u	vim_mod;
++     EventMouseWheelAxis axis;
++ 
++     if (noErr == GetEventParameter(theEvent, kEventParamMouseWheelAxis,
++ 			  typeMouseWheelAxis, NULL, sizeof(axis), NULL, &axis)
++ 	    && axis != kEventMouseWheelAxisY)
++ 	goto bail; /* Vim only does up-down scrolling */
+  
+      if (noErr != GetEventParameter(theEvent, kEventParamMouseWheelDelta,
+  			      typeSInt32, NULL, sizeof(SInt32), NULL, &delta))
+*** ../vim-7.0.064/src/version.c	Tue Aug 22 19:58:22 2006
+--- src/version.c	Tue Aug 22 21:38:07 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     65,
+  /**/
+
+-- 
+Spam seems to be something useful to novices.  Later you realize that
+it's a bunch of indigestable junk that only clogs your system.
+Applies to both the food and the e-mail!
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

================================================================
Index: SOURCES/7.0.066
diff -u /dev/null SOURCES/7.0.066:1.1
--- /dev/null	Sat Aug 26 17:28:13 2006
+++ SOURCES/7.0.066	Sat Aug 26 17:28:07 2006
@@ -0,0 +1,49 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.066
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.066
+Problem:    After the popup menu for Insert mode completion overlaps the tab
+	    pages line it is not completely removed.
+Solution:   Redraw the tab pages line after removing the popup menu. (Ori
+	    Avtalion)
+Files:	    src/popupmnu.c
+
+
+*** ../vim-7.0.065/src/popupmnu.c	Fri Apr 21 00:12:29 2006
+--- src/popupmnu.c	Tue Aug 22 16:10:55 2006
+***************
+*** 552,557 ****
+--- 552,560 ----
+  {
+      pum_array = NULL;
+      redraw_all_later(SOME_VALID);
++ #ifdef FEAT_WINDOWS
++     redraw_tabline = TRUE;
++ #endif
+      status_redraw_all();
+  }
+  
+*** ../vim-7.0.065/src/version.c	Tue Aug 22 21:39:18 2006
+--- src/version.c	Tue Aug 22 21:50:34 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     66,
+  /**/
+
+-- 
+panic("Foooooooood fight!");
+	-- In the kernel source aha1542.c, after detecting a bad segment list
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
================================================================


More information about the pld-cvs-commit mailing list