• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revisionc8cae82dee305d003f809d91025ed21582785597 (tree)
Time2006-08-17 04:24:22
Authorvimboss
Commitervimboss

Log Message

updated for version 7.0-061

Change Summary

Incremental Difference

diff -r e44efb3af0d5 -r c8cae82dee30 src/edit.c
--- a/src/edit.c Wed Aug 16 17:35:00 2006 +0000
+++ b/src/edit.c Wed Aug 16 19:24:22 2006 +0000
@@ -4691,18 +4691,12 @@
46914691 (int)STRLEN(compl_pattern), curs_col);
46924692 if (compl_xp.xp_context == EXPAND_UNSUCCESSFUL
46934693 || compl_xp.xp_context == EXPAND_NOTHING)
4694- {
4694+ /* No completion possible, use an empty pattern to get a
4695+ * "pattern not found" message. */
46954696 compl_col = curs_col;
4696- compl_length = 0;
4697- vim_free(compl_pattern);
4698- compl_pattern = NULL;
4699- }
47004697 else
4701- {
4702- startcol = (int)(compl_xp.xp_pattern - compl_pattern);
4703- compl_col = startcol;
4704- compl_length = curs_col - startcol;
4705- }
4698+ compl_col = (int)(compl_xp.xp_pattern - compl_pattern);
4699+ compl_length = curs_col - compl_col;
47064700 }
47074701 else if (ctrl_x_mode == CTRL_X_FUNCTION || ctrl_x_mode == CTRL_X_OMNI)
47084702 {
diff -r e44efb3af0d5 -r c8cae82dee30 src/version.c
--- a/src/version.c Wed Aug 16 17:35:00 2006 +0000
+++ b/src/version.c Wed Aug 16 19:24:22 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 61,
671+/**/
670672 60,
671673 /**/
672674 59,
Show on old repository browser