• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Révision32f48534fa0fa9b8e6833850fcbd77cd002ce8e0 (tree)
l'heure2008-01-03 05:55:27
Auteurvimboss
Commitervimboss

Message de Log

updated for version 7.1-187

Change Summary

Modification

diff -r e980e93d2ac2 -r 32f48534fa0f src/ex_getln.c
--- a/src/ex_getln.c Wed Jan 02 20:08:25 2008 +0000
+++ b/src/ex_getln.c Wed Jan 02 20:55:27 2008 +0000
@@ -335,7 +335,14 @@
335335 quit_more = FALSE; /* reset after CTRL-D which had a more-prompt */
336336
337337 cursorcmd(); /* set the cursor on the right spot */
338- c = safe_vgetc();
338+
339+ /* Get a character. Ignore K_IGNORE, it should not do anything, such
340+ * as stop completion. */
341+ do
342+ {
343+ c = safe_vgetc();
344+ } while (c == K_IGNORE);
345+
339346 if (KeyTyped)
340347 {
341348 some_key_typed = TRUE;
@@ -1209,7 +1216,8 @@
12091216 goto cmdline_not_changed;
12101217
12111218 case K_IGNORE:
1212- goto cmdline_not_changed; /* Ignore mouse */
1219+ /* Ignore mouse event or ex_window() result. */
1220+ goto cmdline_not_changed;
12131221
12141222 #ifdef FEAT_GUI_W32
12151223 /* On Win32 ignore <M-F4>, we get it when closing the window was
diff -r e980e93d2ac2 -r 32f48534fa0f src/version.c
--- a/src/version.c Wed Jan 02 20:08:25 2008 +0000
+++ b/src/version.c Wed Jan 02 20:55:27 2008 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 187,
671+/**/
670672 186,
671673 /**/
672674 185,
Afficher sur ancien navigateur de dépôt.