r1183 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.1.242

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Sun Jan 27 21:12:28 UTC 2008


Author: jamessan
Date: Sun Jan 27 21:12:28 2008
New Revision: 1183

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1183
Log:
* New upstream patch (242), see README.gz for details.

Added:
    trunk/packages/vim/upstream/patches/7.1.242
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=1183&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Sun Jan 27 21:12:28 2008
@@ -272,3 +272,4 @@
   1639  7.1.239  (after 7.1.233) compiler warning for sprintf() argument
   5157  7.1.240  "gUe" may stop before the end of the word
   3093  7.1.241  focus change events not always ignored
+  2262  7.1.242  "cib" doesn't work properly on "(x)"

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=1183&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Sun Jan 27 21:12:28 2008
@@ -1,10 +1,11 @@
-vim (1:7.1-241+2) UNRELEASED; urgency=low
-
+vim (1:7.1-242+1) UNRELEASED; urgency=low
+
+  * New upstream patch (242), see README.gz for details.
   * debian/control:
     - Add libacl1-dev to Build-Depends so it actually builds with acl support.
       Thanks to Lucas Nussbaum's dirty chroot builds for noticing this.
 
- -- James Vega <jamessan at debian.org>  Sun, 27 Jan 2008 15:25:38 -0500
+ -- James Vega <jamessan at debian.org>  Sun, 27 Jan 2008 16:11:50 -0500
 
 vim (1:7.1-241+1) unstable; urgency=low
 

Added: trunk/packages/vim/upstream/patches/7.1.242
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.1.242?rev=1183&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.1.242 (added)
+++ trunk/packages/vim/upstream/patches/7.1.242 Sun Jan 27 21:12:28 2008
@@ -1,0 +1,68 @@
+To: vim-dev at vim.org
+Subject: Patch 7.1.242
+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.242 (after 7.1.005)
+Problem:    "cib" doesn't work properly on "(x)". (Tim Pope)
+Solution:   Use ltoreq() instead of lt().  Also fix "ciT" on "<a>x</a>".
+Files:	    src/search.c
+
+
+*** ../vim-7.1.241/src/search.c	Sat Jan 19 15:55:51 2008
+--- src/search.c	Sat Jan 26 13:56:06 2008
+***************
+*** 3637,3643 ****
+  	oap->inclusive = FALSE;
+  	if (sol)
+  	    incl(&curwin->w_cursor);
+! 	else if (lt(start_pos, curwin->w_cursor))
+  	    /* Include the character under the cursor. */
+  	    oap->inclusive = TRUE;
+  	else
+--- 3637,3643 ----
+  	oap->inclusive = FALSE;
+  	if (sol)
+  	    incl(&curwin->w_cursor);
+! 	else if (ltoreq(start_pos, curwin->w_cursor))
+  	    /* Include the character under the cursor. */
+  	    oap->inclusive = TRUE;
+  	else
+***************
+*** 3754,3759 ****
+--- 3754,3763 ----
+      old_pos = curwin->w_cursor;
+      old_end = curwin->w_cursor;		    /* remember where we started */
+      old_start = old_end;
++ #ifdef FEAT_VISUAL
++     if (!VIsual_active || *p_sel == 'e')
++ #endif
++ 	decl(&old_end);			    /* old_end is inclusive */
+  
+      /*
+       * If we start on "<aaa>" select that block.
+*** ../vim-7.1.241/src/version.c	Tue Jan 22 17:49:17 2008
+--- src/version.c	Sat Jan 26 21:14:05 2008
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     242,
+  /**/
+
+-- 
+DENNIS: Oh, very nice. King, eh!  I expect you've got a palace and fine
+        clothes and courtiers and plenty of food.  And how d'you get that?  By
+        exploiting the workers! By hanging on to outdated imperialist dogma
+        which perpetuates the social and economic differences in our society!
+                 "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