[vim] - patchlevel 802

Karsten Hopp karsten at fedoraproject.org
Mon Feb 18 13:38:24 UTC 2013


commit c3bdb205f5d55bbbc5a951c215783a5e9b828593
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Feb 18 15:37:53 2013 +0100

    - patchlevel 802

 7.3.802 |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 50 insertions(+), 0 deletions(-)
---
diff --git a/7.3.802 b/7.3.802
new file mode 100644
index 0000000..7b1b62f
--- /dev/null
+++ b/7.3.802
@@ -0,0 +1,50 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.802
+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.802
+Problem:    After setting 'isk' to a value ending in a comma appending to the
+	    option fails.
+Solution:   Disallow a trailing comma for 'isk' and similar options.
+Files:	    src/charset.c
+
+
+*** ../vim-7.3.801/src/charset.c	2013-01-30 17:30:14.000000000 +0100
+--- src/charset.c	2013-02-06 16:20:01.000000000 +0100
+***************
+*** 284,290 ****
+--- 284,295 ----
+  		}
+  		++c;
+  	    }
++ 
++ 	    c = *p;
+  	    p = skip_to_option_part(p);
++ 	    if (c == ',' && *p == NUL)
++ 		/* Trailing comma is not allowed. */
++ 		return FAIL;
+  	}
+      }
+      chartab_initialized = TRUE;
+*** ../vim-7.3.801/src/version.c	2013-02-06 13:37:58.000000000 +0100
+--- src/version.c	2013-02-06 16:21:18.000000000 +0100
+***************
+*** 727,728 ****
+--- 727,730 ----
+  {   /* Add new patch number below this line */
++ /**/
++     802,
+  /**/
+
+-- 
+Dreams are free, but there's a small charge for alterations.
+
+ /// 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