[vim: 13/25] - patchlevel 651

Karsten Hopp karsten at fedoraproject.org
Mon Mar 9 13:11:35 UTC 2015


commit 451f2be88d83114c5246fc7b0e09038209bd69ff
Author: Karsten Hopp <karsten at redhat.com>
Date:   Thu Mar 5 18:00:04 2015 +0100

    - patchlevel 651

 7.4.651 | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)
---
diff --git a/7.4.651 b/7.4.651
new file mode 100644
index 0000000..dde7810
--- /dev/null
+++ b/7.4.651
@@ -0,0 +1,58 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.4.651
+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.4.651 (after 7.4.582)
+Problem:    Can't match "%>80v" properly for multi-byte characters.
+Solution:   Multiply the character number by the maximum number of bytes in a
+	    character. (Yasuhiro Matsumoto)
+Files:	    src/regexp_nfa.c
+
+
+*** ../vim-7.4.650/src/regexp_nfa.c	2015-02-10 18:18:13.000452461 +0100
+--- src/regexp_nfa.c	2015-03-05 16:55:03.490881511 +0100
+***************
+*** 6477,6483 ****
+  
+  		    /* Bail out quickly when there can't be a match, avoid the
+  		     * overhead of win_linetabsize() on long lines. */
+! 		    if (op != 1 && col > t->state->val)
+  			break;
+  		    result = FALSE;
+  		    if (op == 1 && col - 1 > t->state->val && col > 100)
+--- 6477,6487 ----
+  
+  		    /* Bail out quickly when there can't be a match, avoid the
+  		     * overhead of win_linetabsize() on long lines. */
+! 		    if (op != 1 && col > t->state->val
+! #ifdef FEAT_MBYTE
+! 			    * (has_mbyte ? MB_MAXBYTES : 1)
+! #endif
+! 			    )
+  			break;
+  		    result = FALSE;
+  		    if (op == 1 && col - 1 > t->state->val && col > 100)
+*** ../vim-7.4.650/src/version.c	2015-03-05 16:47:15.772151680 +0100
+--- src/version.c	2015-03-05 17:15:22.397141085 +0100
+***************
+*** 743,744 ****
+--- 743,746 ----
+  {   /* Add new patch number below this line */
++ /**/
++     651,
+  /**/
+
+-- 
+FATHER: One day, lad, all this will be yours ...
+PRINCE: What - the curtains?
+                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
+
+ /// 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