r778 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.0.119 upstream/patches/7.0.120

zack at users.alioth.debian.org zack at users.alioth.debian.org
Sat Oct 7 07:18:32 UTC 2006


Author: zack
Date: Sat Oct  7 07:18:31 2006
New Revision: 778

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=778
Log:
patches up to 120

Added:
    trunk/packages/vim/upstream/patches/7.0.119
    trunk/packages/vim/upstream/patches/7.0.120
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=778&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Sat Oct  7 07:18:31 2006
@@ -143,3 +143,5 @@
   1508  7.0.116  MS-Windows: :version reported 32 bits for 64 bits systems
   5028  7.0.117  problem when mixing keepend and extend in syntax highlighting
   1529  7.0.118  printf() doesn't allow zero padding for strings
+  1412  7.0.119  CursorHold event is not triggered when leaving Insert mode
+  1780  7.0.120  crash when using getreg('=') in the = register

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=778&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Sat Oct  7 07:18:31 2006
@@ -1,7 +1,7 @@
 vim (1:7.0-118+1) unstable; urgency=low
 
   [ Debian Vim Maintainers ]
-  * New upstream patches (095 - 118), see README.gz for details.
+  * New upstream patches (095 - 120), see README.gz for details.
 
   [ James Vega ]
   * Since vim-gui-common no longer depends on vim-common (to allow for

Added: trunk/packages/vim/upstream/patches/7.0.119
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.119?rev=778&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.119 (added)
+++ trunk/packages/vim/upstream/patches/7.0.119 Sat Oct  7 07:18:31 2006
@@ -1,0 +1,48 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.119
+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.119
+Problem:    When going back from Insert to Normal mode the CursorHold event
+	    doesn't trigger. (Yakov Lerner)
+Solution:   Reset "did_cursorhold" when leaving Insert mode.
+Files:	    src/edit.c
+
+
+*** ../vim-7.0.118/src/edit.c	Tue Oct  3 15:49:20 2006
+--- src/edit.c	Thu Oct  5 22:26:27 2006
+***************
+*** 923,928 ****
+--- 923,929 ----
+  		if (cmdchar != 'r' && cmdchar != 'v')
+  		    apply_autocmds(EVENT_INSERTLEAVE, NULL, NULL,
+  							       FALSE, curbuf);
++ 		did_cursorhold = FALSE;
+  #endif
+  		return (c == Ctrl_O);
+  	    }
+*** ../vim-7.0.118/src/version.c	Tue Oct  3 17:21:04 2006
+--- src/version.c	Fri Oct  6 20:35:45 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     119,
+  /**/
+
+-- 
+The Feynman problem solving Algorithm:
+	1) Write down the problem
+	2) Think real hard
+	3) Write down the answer
+
+ /// 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    ///

Added: trunk/packages/vim/upstream/patches/7.0.120
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.120?rev=778&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.120 (added)
+++ trunk/packages/vim/upstream/patches/7.0.120 Sat Oct  7 07:18:31 2006
@@ -1,0 +1,64 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.120
+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.120
+Problem:    Crash when using CTRL-R = at the command line and entering
+	    "getreg('=')". (James Vega)
+Solution:   Avoid recursiveness of evaluating the = register.
+Files:	    src/ops.c
+
+
+*** ../vim-7.0.119/src/ops.c	Sun Jul 23 22:37:29 2006
+--- src/ops.c	Fri Oct  6 21:27:40 2006
+***************
+*** 770,775 ****
+--- 770,776 ----
+  {
+      char_u	*expr_copy;
+      char_u	*rv;
++     static int	nested = 0;
+  
+      if (expr_line == NULL)
+  	return NULL;
+***************
+*** 780,786 ****
+--- 781,794 ----
+      if (expr_copy == NULL)
+  	return NULL;
+  
++     /* When we are invoked recursively limit the evaluation to 10 levels.
++      * Then return the string as-is. */
++     if (nested >= 10)
++ 	return expr_copy;
++ 
++     ++nested;
+      rv = eval_to_string(expr_copy, NULL, TRUE);
++     --nested;
+      vim_free(expr_copy);
+      return rv;
+  }
+*** ../vim-7.0.119/src/version.c	Fri Oct  6 20:39:58 2006
+--- src/version.c	Fri Oct  6 21:31:56 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     120,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+16. You step out of your room and realize that your parents have moved and
+    you don't have a clue when it happened.
+
+ /// 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