r649 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.0.001

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Tue May 9 13:13:17 UTC 2006


Author: jamessan
Date: Tue May  9 13:13:15 2006
New Revision: 649

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=649
Log:
And the first patch for 7.0 has landed.

Added:
    trunk/packages/vim/upstream/patches/7.0.001
Modified:
    trunk/packages/vim/debian/README
    trunk/packages/vim/debian/changelog

Modified: trunk/packages/vim/debian/README
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/README?rev=649&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Tue May  9 13:13:15 2006
@@ -1,4 +1,4 @@
-Patches for Vim - Vi IMproved 6.4
+Patches for Vim - Vi IMproved 7.0
 
 The files in this directory contain source code changes to fix
 problems in released versions of Vim.  Each file also contains an
@@ -14,24 +14,15 @@
 and "runtime" directories are located.
 Depending on the version of "patch" that you use, you may have add
 an argument to make it patch the right file:
-        patch -p < 6.4.001
-        patch -p0 < 6.4.001
+        patch -p < 7.0.001
+        patch -p0 < 7.0.001
 
 After applying a patch, you need to compile Vim.  There are no
 patches for binaries.
 
 Checksums for the patch files can be found in the file MD5.
 
-Individual patches for Vim 6.4:
+Individual patches for Vim 7.0:
 
   SIZE  NAME     FIXES
-  1705  6.4.001  (extra) Win32: can't compile the global IME code
-  7802  6.4.002  Unix: may change owner of wrong file in rare cases
-  1463  6.4.003  (after 6.4.002) build problem on non-Unix system
-  1581  6.4.004  "go" doesn't work correctly when 'virtualedit' is set
-  1577  6.4.005  truncating message may write before buffer
-  2320  6.4.006  ":argedit", "argdel" and ":argadd" used count argument
-  1717  6.4.007  Unix: crash when expanding backticks
-  2199  6.4.008  hang for 'hlsearch' highlighting in multi-byte character
-  2653  6.4.009  (after 6.4.002) VMS: updating the viminfo file fails
-  3493  6.4.010  (extra) VMS: improved low level keyboard input
+  1627  7.0.001  'spellsuggest' could not be added to

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=649&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Tue May  9 13:13:15 2006
@@ -1,7 +1,8 @@
-vim (1:7.0-000+1) UNRELEASED; urgency=low
+vim (1:7.0-001+1) UNRELEASED; urgency=low
 
   [ Debian Vim Maintainers ]
-  * New upstream release (7.0). (closes: #366396)
+  * New upstream release and patch (7.0.001), see README.gz for details..
+    (closes: #366396)
     + The CSS syntax file properly handles non-UTF-8 aware environments.
       (closes: #358734)
 
@@ -13,7 +14,7 @@
     + Update debian/rules to use the src/lang/extra tarballs instead of one
       zip file.
 
- -- James Vega <jamessan at debian.org>  Mon,  8 May 2006 13:47:06 -0400
+ -- James Vega <jamessan at debian.org>  Tue,  9 May 2006 08:44:53 -0400
 
 vim (1:6.4+7.0g01-1) experimental; urgency=low
 

Added: trunk/packages/vim/upstream/patches/7.0.001
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.001?rev=649&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.001 (added)
+++ trunk/packages/vim/upstream/patches/7.0.001 Tue May  9 13:13:15 2006
@@ -1,0 +1,52 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.001
+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.001
+Problem:    ":set spellsuggest+=10" does not work. (Suresh Govindachar)
+Solution:   Add P_COMMA to the 'spellsuggest' flags.
+Files:      src/option.c
+
+
+*** ../vim-7.0.000/src/option.c	Wed May  3 23:26:04 2006
+--- src/option.c	Sun May  7 17:54:46 2006
+***************
+*** 2294,2300 ****
+  			    {(char_u *)0L, (char_u *)0L}
+  #endif
+  			    },
+!     {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE,
+  #ifdef FEAT_SPELL
+  			    (char_u *)&p_sps, PV_NONE,
+  			    {(char_u *)"best", (char_u *)0L}
+--- 2294,2300 ----
+  			    {(char_u *)0L, (char_u *)0L}
+  #endif
+  			    },
+!     {"spellsuggest", "sps", P_STRING|P_VI_DEF|P_EXPAND|P_SECURE|P_COMMA,
+  #ifdef FEAT_SPELL
+  			    (char_u *)&p_sps, PV_NONE,
+  			    {(char_u *)"best", (char_u *)0L}
+*** ../vim-7.0.000/src/version.c	Wed May  3 00:04:24 2006
+--- src/version.c	Tue May  9 14:23:20 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     1,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+70. ISDN lines are added to your house on a hourly basis
+
+ /// 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 pkg-vim-maintainers mailing list