• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revision29bf49bad20d3b1ad35af5cf21d91c4aa486d4a5 (tree)
Zeit2006-08-29 23:30:35
Autorvimboss
Commitervimboss

Log Message

updated for version 7.0-068

Ändern Zusammenfassung

Diff

diff -r d95676480093 -r 29bf49bad20d src/edit.c
--- a/src/edit.c Tue Aug 29 14:07:36 2006 +0000
+++ b/src/edit.c Tue Aug 29 14:30:35 2006 +0000
@@ -2405,7 +2405,7 @@
24052405 /* compl_pattern doesn't need to be set */
24062406 compl_orig_text = vim_strnsave(ml_get_curline() + compl_col, compl_length);
24072407 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
2408- -1, FALSE, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
2408+ -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
24092409 return;
24102410
24112411 /* Handle like dictionary completion. */
@@ -2821,7 +2821,7 @@
28212821 ptr = find_word_end(ptr);
28222822 add_r = ins_compl_add_infercase(regmatch->startp[0],
28232823 (int)(ptr - regmatch->startp[0]),
2824- FALSE, files[i], *dir, 0);
2824+ p_ic, files[i], *dir, 0);
28252825 if (thesaurus)
28262826 {
28272827 char_u *wstart;
@@ -2857,7 +2857,7 @@
28572857 ptr = find_word_end(ptr);
28582858 add_r = ins_compl_add_infercase(wstart,
28592859 (int)(ptr - wstart),
2860- FALSE, files[i], *dir, 0);
2860+ p_ic, files[i], *dir, 0);
28612861 }
28622862 }
28632863 if (add_r == OK)
@@ -3826,7 +3826,7 @@
38263826 TAG_INS_COMP | (ctrl_x_mode ? TAG_VERBOSE : 0),
38273827 TAG_MANY, curbuf->b_ffname) == OK && num_matches > 0)
38283828 {
3829- ins_compl_add_matches(num_matches, matches, FALSE);
3829+ ins_compl_add_matches(num_matches, matches, p_ic);
38303830 }
38313831 p_ic = save_p_ic;
38323832 break;
@@ -3867,7 +3867,7 @@
38673867 num_matches = expand_spelling(first_match_pos.lnum,
38683868 first_match_pos.col, compl_pattern, &matches);
38693869 if (num_matches > 0)
3870- ins_compl_add_matches(num_matches, matches, FALSE);
3870+ ins_compl_add_matches(num_matches, matches, p_ic);
38713871 #endif
38723872 break;
38733873
@@ -4001,7 +4001,7 @@
40014001 continue;
40024002 }
40034003 }
4004- if (ins_compl_add_infercase(ptr, len, FALSE,
4004+ if (ins_compl_add_infercase(ptr, len, p_ic,
40054005 ins_buf == curbuf ? NULL : ins_buf->b_sfname,
40064006 0, flags) != NOTDONE)
40074007 {
@@ -4809,7 +4809,7 @@
48094809 vim_free(compl_orig_text);
48104810 compl_orig_text = vim_strnsave(line + compl_col, compl_length);
48114811 if (compl_orig_text == NULL || ins_compl_add(compl_orig_text,
4812- -1, FALSE, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
4812+ -1, p_ic, NULL, NULL, 0, ORIGINAL_TEXT, FALSE) != OK)
48134813 {
48144814 vim_free(compl_pattern);
48154815 compl_pattern = NULL;
diff -r d95676480093 -r 29bf49bad20d src/search.c
--- a/src/search.c Tue Aug 29 14:07:36 2006 +0000
+++ b/src/search.c Tue Aug 29 14:30:35 2006 +0000
@@ -4871,7 +4871,7 @@
48714871 goto exit_matched;
48724872 }
48734873
4874- add_r = ins_compl_add_infercase(aux, i, FALSE,
4874+ add_r = ins_compl_add_infercase(aux, i, p_ic,
48754875 curr_fname == curbuf->b_fname ? NULL : curr_fname,
48764876 dir, reuse);
48774877 if (add_r == OK)
diff -r d95676480093 -r 29bf49bad20d src/spell.c
--- a/src/spell.c Tue Aug 29 14:07:36 2006 +0000
+++ b/src/spell.c Tue Aug 29 14:30:35 2006 +0000
@@ -15658,7 +15658,7 @@
1565815658 ? MB_STRNICMP(p, pat, STRLEN(pat)) == 0
1565915659 : STRNCMP(p, pat, STRLEN(pat)) == 0)
1566015660 && ins_compl_add_infercase(p, (int)STRLEN(p),
15661- FALSE, NULL, *dir, 0) == OK)
15661+ p_ic, NULL, *dir, 0) == OK)
1566215662 /* if dir was BACKWARD then honor it just once */
1566315663 *dir = FORWARD;
1566415664 }
diff -r d95676480093 -r 29bf49bad20d src/version.c
--- a/src/version.c Tue Aug 29 14:07:36 2006 +0000
+++ b/src/version.c Tue Aug 29 14:30:35 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 68,
671+/**/
670672 67,
671673 /**/
672674 66,
Show on old repository browser