[vim/f13] Patchlevel 192

Karsten Hopp karsten at fedoraproject.org
Tue Jun 7 09:57:58 UTC 2011


commit d996f19d387c0fad09cf3814f1768b389ba47aec
Author: Karsten Hopp <karsten at redhat.com>
Date:   Tue Jun 7 11:44:17 2011 +0200

    Patchlevel 192

 7.3.192 |   61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 61 insertions(+), 0 deletions(-)
---
diff --git a/7.3.192 b/7.3.192
new file mode 100644
index 0000000..5dab19b
--- /dev/null
+++ b/7.3.192
@@ -0,0 +1,61 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.192
+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.192
+Problem:    Ex command ":s/ \?/ /g" splits multi-byte characters into bytes.
+	    (Dominique Pelle)
+Solution:   Advance over whole character instead of one byte.
+Files:	    src/ex_cmds.c
+
+
+*** ../vim-7.3.191/src/ex_cmds.c	2011-05-10 16:41:13.000000000 +0200
+--- src/ex_cmds.c	2011-05-19 14:23:33.000000000 +0200
+***************
+*** 4625,4631 ****
+  			 * for a match in this line again. */
+  			skip_match = TRUE;
+  		    else
+! 			++matchcol; /* search for a match at next column */
+  		    goto skip;
+  		}
+  
+--- 4625,4639 ----
+  			 * for a match in this line again. */
+  			skip_match = TRUE;
+  		    else
+! 		    {
+! 			 /* search for a match at next column */
+! #ifdef FEAT_MBYTE
+! 			if (has_mbyte)
+! 			    matchcol += mb_ptr2len(sub_firstline + matchcol);
+! 			else
+! #endif
+! 			    ++matchcol;
+! 		    }
+  		    goto skip;
+  		}
+  
+*** ../vim-7.3.191/src/version.c	2011-05-19 13:40:47.000000000 +0200
+--- src/version.c	2011-05-19 14:28:44.000000000 +0200
+***************
+*** 711,712 ****
+--- 711,714 ----
+  {   /* Add new patch number below this line */
++ /**/
++     192,
+  /**/
+
+-- 
+From "know your smileys":
+ :-F	Bucktoothed vampire with one tooth missing
+
+ /// 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