r1152 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.1.229

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Tue Jan 15 05:07:10 UTC 2008


Author: jamessan
Date: Tue Jan 15 05:07:10 2008
New Revision: 1152

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1152
Log:
Upstream patch 229

Added:
    trunk/packages/vim/upstream/patches/7.1.229
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=1152&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Tue Jan 15 05:07:10 2008
@@ -259,3 +259,4 @@
   1957  7.1.226  command line completion fails for a file name with a '&' char
   5595  7.1.227  hang in syntax HL when moving over a ")"
   1678  7.1.228  with 'foldmethod' "indent" fold can't be closed after "3>>"
+  1758  7.1.229  a fold is closed when backspacing in Insert mode

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=1152&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Tue Jan 15 05:07:10 2008
@@ -1,7 +1,7 @@
-vim (1:7.1-228+1) UNRELEASED; urgency=low
+vim (1:7.1-229+1) UNRELEASED; urgency=low
 
   [ Debian Vim Maintainers ]
-  * New upstream patches (176 - 228), see README.gz for details.
+  * New upstream patches (176 - 229), see README.gz for details.
 
   [ James Vega ]
   * Add configure-tcl_detection.diff, which allows Vim's configure script to
@@ -23,7 +23,7 @@
       get created.  Their creation is inevitable but this will clean up the
       buffer list.  (Closes: #370082)
 
- -- James Vega <jamessan at debian.org>  Tue, 15 Jan 2008 00:01:21 -0500
+ -- James Vega <jamessan at debian.org>  Tue, 15 Jan 2008 00:03:10 -0500
 
 vim (1:7.1-175+2) unstable; urgency=low
 

Added: trunk/packages/vim/upstream/patches/7.1.229
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.1.229?rev=1152&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.1.229 (added)
+++ trunk/packages/vim/upstream/patches/7.1.229 Tue Jan 15 05:07:10 2008
@@ -1,0 +1,55 @@
+To: vim-dev at vim.org
+Subject: Patch 7.1.229
+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.1.229
+Problem:    A fold is closed when it shouldn't when 'foldmethod' is "indent"
+	    and backspacing a non-white character so that the indent increases.
+Solution:   Keep the fold open after backspacing a character.
+Files:	    src/edit.c
+
+
+*** ../vim-7.1.228/src/edit.c	Sat Jan 12 18:13:05 2008
+--- src/edit.c	Mon Jan 14 20:06:43 2008
+***************
+*** 8618,8623 ****
+--- 8619,8632 ----
+      if (vim_strchr(p_cpo, CPO_BACKSPACE) != NULL && dollar_vcol == 0)
+  	dollar_vcol = curwin->w_virtcol;
+  
++ #ifdef FEAT_FOLDING
++     /* When deleting a char the cursor line must never be in a closed fold.
++      * E.g., when 'foldmethod' is indent and deleting the first non-white
++      * char before a Tab. */
++     if (did_backspace)
++ 	foldOpenCursor();
++ #endif
++ 
+      return did_backspace;
+  }
+  
+*** ../vim-7.1.228/src/version.c	Sun Jan 13 21:57:25 2008
+--- src/version.c	Mon Jan 14 20:08:35 2008
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     229,
+  /**/
+
+-- 
+ROBIN:  (warily) And if you get a question wrong?
+ARTHUR: You are cast into the Gorge of Eternal Peril.
+ROBIN:  Oh ... wacho!
+                 "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/ \\\
+\\\        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