• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revision3f8cf4c668c30ec99289b5683f4fd36a1df602fa (tree)
Zeit2006-10-03 22:49:29
Autorvimboss
Commitervimboss

Log Message

updated for version 7.0-115

Ändern Zusammenfassung

Diff

diff -r cec8b867838b -r 3f8cf4c668c3 src/edit.c
--- a/src/edit.c Tue Oct 03 13:36:13 2006 +0000
+++ b/src/edit.c Tue Oct 03 13:49:29 2006 +0000
@@ -2157,7 +2157,7 @@
21572157 do
21582158 {
21592159 if ( !(match->cp_flags & ORIGINAL_TEXT)
2160- && ins_compl_equal(match, str, len)
2160+ && STRNCMP(match->cp_str, str, len) == 0
21612161 && match->cp_str[len] == NUL)
21622162 return NOTDONE;
21632163 match = match->cp_next;
@@ -4042,7 +4042,7 @@
40424042 if (got_int)
40434043 break;
40444044 /* Fill the popup menu as soon as possible. */
4045- if (pum_wanted() && type != -1)
4045+ if (type != -1)
40464046 ins_compl_check_keys(0);
40474047
40484048 if ((ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE)
diff -r cec8b867838b -r 3f8cf4c668c3 src/version.c
--- a/src/version.c Tue Oct 03 13:36:13 2006 +0000
+++ b/src/version.c Tue Oct 03 13:49:29 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 115,
671+/**/
670672 114,
671673 /**/
672674 113,
Show on old repository browser