packages: vim/7.3.241 (NEW), vim/7.3.242 (NEW) - new

adamg adamg at pld-linux.org
Sat Jul 9 09:07:44 CEST 2011


Author: adamg                        Date: Sat Jul  9 07:07:44 2011 GMT
Module: packages                      Tag: HEAD
---- Log message:
- new

---- Files affected:
packages/vim:
   7.3.241 (NONE -> 1.1)  (NEW)
packages/vim:
   7.3.242 (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: packages/vim/7.3.241
diff -u /dev/null packages/vim/7.3.241:1.1
--- /dev/null	Sat Jul  9 09:07:44 2011
+++ packages/vim/7.3.241	Sat Jul  9 09:07:39 2011
@@ -0,0 +1,71 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.241
+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.241
+Problem:    Using CTRL-R CTRL-W on the command line may insert only part of
+	    the word.
+Solution:   Use the cursor position instead of assuming it is at the end of
+	    the command. (Tyru)
+Files:	    src/ex_getln.c
+
+
+*** ../vim-7.3.240/src/ex_getln.c	2011-07-07 15:04:38.000000000 +0200
+--- src/ex_getln.c	2011-07-07 16:38:50.000000000 +0200
+***************
+*** 3046,3052 ****
+  	    int	    len;
+  
+  	    /* Locate start of last word in the cmd buffer. */
+! 	    for (w = ccline.cmdbuff + ccline.cmdlen; w > ccline.cmdbuff; )
+  	    {
+  #ifdef FEAT_MBYTE
+  		if (has_mbyte)
+--- 3046,3052 ----
+  	    int	    len;
+  
+  	    /* Locate start of last word in the cmd buffer. */
+! 	    for (w = ccline.cmdbuff + ccline.cmdpos; w > ccline.cmdbuff; )
+  	    {
+  #ifdef FEAT_MBYTE
+  		if (has_mbyte)
+***************
+*** 3064,3070 ****
+  		    --w;
+  		}
+  	    }
+! 	    len = (int)((ccline.cmdbuff + ccline.cmdlen) - w);
+  	    if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
+  		p += len;
+  	}
+--- 3064,3070 ----
+  		    --w;
+  		}
+  	    }
+! 	    len = (int)((ccline.cmdbuff + ccline.cmdpos) - w);
+  	    if (p_ic ? STRNICMP(w, arg, len) == 0 : STRNCMP(w, arg, len) == 0)
+  		p += len;
+  	}
+*** ../vim-7.3.240/src/version.c	2011-07-07 16:20:45.000000000 +0200
+--- src/version.c	2011-07-07 16:41:29.000000000 +0200
+***************
+*** 711,712 ****
+--- 711,714 ----
+  {   /* Add new patch number below this line */
++ /**/
++     241,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+258. When you want to see your girlfriend, you surf to her homepage.
+
+ /// 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    ///

================================================================
Index: packages/vim/7.3.242
diff -u /dev/null packages/vim/7.3.242:1.1
--- /dev/null	Sat Jul  9 09:07:44 2011
+++ packages/vim/7.3.242	Sat Jul  9 09:07:42 2011
@@ -0,0 +1,71 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.242
+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.242
+Problem:    Illegal memory access in after_pathsep().
+Solution:   Check that the pointer is not at the start of the file name.
+	    (Dominique Pelle)
+Files:	    src/misc2.c
+
+
+*** ../vim-7.3.241/src/misc2.c	2011-07-07 16:20:45.000000000 +0200
+--- src/misc2.c	2011-07-07 17:05:41.000000000 +0200
+***************
+*** 3247,3253 ****
+  #if defined(FEAT_MBYTE) || defined(PROTO)
+  /*
+   * Return TRUE if "p" points to just after a path separator.
+!  * Take care of multi-byte characters.
+   * "b" must point to the start of the file name
+   */
+      int
+--- 3247,3253 ----
+  #if defined(FEAT_MBYTE) || defined(PROTO)
+  /*
+   * Return TRUE if "p" points to just after a path separator.
+!  * Takes care of multi-byte characters.
+   * "b" must point to the start of the file name
+   */
+      int
+***************
+*** 3255,3261 ****
+      char_u	*b;
+      char_u	*p;
+  {
+!     return vim_ispathsep(p[-1])
+  			     && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
+  }
+  #endif
+--- 3255,3261 ----
+      char_u	*b;
+      char_u	*p;
+  {
+!     return p > b && vim_ispathsep(p[-1])
+  			     && (!has_mbyte || (*mb_head_off)(b, p - 1) == 0);
+  }
+  #endif
+*** ../vim-7.3.241/src/version.c	2011-07-07 16:44:33.000000000 +0200
+--- src/version.c	2011-07-07 17:05:49.000000000 +0200
+***************
+*** 711,712 ****
+--- 711,714 ----
+  {   /* Add new patch number below this line */
++ /**/
++     242,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+260. Co-workers have to E-mail you about the fire alarm to get
+     you out of the building.
+
+ /// 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 pld-cvs-commit mailing list