r651 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.0.002

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Wed May 10 13:41:23 UTC 2006


Author: jamessan
Date: Wed May 10 13:41:22 2006
New Revision: 651

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=651
Log:
Update to 7.0.002

Added:
    trunk/packages/vim/upstream/patches/7.0.002
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=651&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Wed May 10 13:41:22 2006
@@ -26,3 +26,4 @@
 
   SIZE  NAME     FIXES
   1627  7.0.001  'spellsuggest' could not be added to
+  2007  7.0.002  C omni complete has problem with % and # in tags file path

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

Added: trunk/packages/vim/upstream/patches/7.0.002
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.002?rev=651&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.002 (added)
+++ trunk/packages/vim/upstream/patches/7.0.002 Wed May 10 13:41:22 2006
@@ -1,0 +1,70 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.002
+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.002
+Problem:    C omni completion has a problem with tags files with a path
+	    containing "#" or "%".
+Solution:   Escape these characters. (Sebastian Baberowski)
+Files:	    runtime/autoload/ccomplete.vim
+
+
+*** ../vim-7.0.001/runtime/autoload/ccomplete.vim	Wed May 10 15:22:54 2006
+--- runtime/autoload/ccomplete.vim	Mon May  8 13:52:07 2006
+***************
+*** 1,7 ****
+  " Vim completion script
+  " Language:	C
+  " Maintainer:	Bram Moolenaar <Bram at vim.org>
+! " Last Change:	2006 May 03
+  
+  
+  " This function is used for the 'omnifunc' option.
+--- 1,7 ----
+  " Vim completion script
+  " Language:	C
+  " Maintainer:	Bram Moolenaar <Bram at vim.org>
+! " Last Change:	2006 May 08
+  
+  
+  " This function is used for the 'omnifunc' option.
+***************
+*** 458,464 ****
+  " member.
+  function! s:StructMembers(typename, items, all)
+    " Todo: What about local structures?
+!   let fnames = join(map(tagfiles(), 'escape(v:val, " \\")'))
+    if fnames == ''
+      return []
+    endif
+--- 458,464 ----
+  " member.
+  function! s:StructMembers(typename, items, all)
+    " Todo: What about local structures?
+!   let fnames = join(map(tagfiles(), 'escape(v:val, " \\#%")'))
+    if fnames == ''
+      return []
+    endif
+*** ../vim-7.0.001/src/version.c	Wed May 10 15:22:50 2006
+--- src/version.c	Wed May 10 15:24:42 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     2,
+  /**/
+
+-- 
+From "know your smileys":
+ =):-)	Uncle Sam
+
+ /// 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