[vim/f19] - patchlevel 854

Karsten Hopp karsten at fedoraproject.org
Mon Apr 15 15:05:35 UTC 2013


commit 823a007e5becdc66c8157356d3be6cd839d16aeb
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Apr 15 17:02:17 2013 +0200

    - patchlevel 854

 7.3.854 |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 49 insertions(+), 0 deletions(-)
---
diff --git a/7.3.854 b/7.3.854
new file mode 100644
index 0000000..6bc4717
--- /dev/null
+++ b/7.3.854
@@ -0,0 +1,49 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.854
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.854
+Problem:    After using backspace in insert mode completion, CTRL-N and CTRL-P
+	    do not highlight the right entry. (Olivier Teuliere)
+Solution:   Set the current item to the shown item after using backspace.
+Files:	    src/edit.c
+
+
+*** ../vim-7.3.853/src/edit.c	2013-02-26 13:30:28.000000000 +0100
+--- src/edit.c	2013-03-07 19:31:46.000000000 +0100
+***************
+*** 3380,3385 ****
+--- 3380,3388 ----
+      if (compl_leader != NULL)
+      {
+  	ins_compl_new_leader();
++ 	if (compl_shown_match != NULL)
++ 	    /* Make sure current match is not a hidden item. */
++ 	    compl_curr_match = compl_shown_match;
+  	return NUL;
+      }
+      return K_BS;
+*** ../vim-7.3.853/src/version.c	2013-03-07 18:50:52.000000000 +0100
+--- src/version.c	2013-03-07 19:34:32.000000000 +0100
+***************
+*** 730,731 ****
+--- 730,733 ----
+  {   /* Add new patch number below this line */
++ /**/
++     854,
+  /**/
+
+-- 
+If you put 7 of the most talented OSS developers in a room for a week
+and asked them to fix a bug in a spreadsheet program, in 1 week
+you'd have 2 new mail readers and a text-based web browser.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///


More information about the scm-commits mailing list