comparison src/search.c @ 867:a5677b7ce858

updated for version 7.0g04
author vimboss
date Fri, 05 May 2006 21:15:17 +0000
parents 8bebcabccc2c
children 29bf49bad20d
comparison
equal deleted inserted replaced
866:5de6b337e1a2 867:a5677b7ce858
4869 4869
4870 if (i == compl_length) 4870 if (i == compl_length)
4871 goto exit_matched; 4871 goto exit_matched;
4872 } 4872 }
4873 4873
4874 add_r = ins_compl_add_infercase(aux, i, p_ic, 4874 add_r = ins_compl_add_infercase(aux, i, FALSE,
4875 curr_fname == curbuf->b_fname ? NULL : curr_fname, 4875 curr_fname == curbuf->b_fname ? NULL : curr_fname,
4876 dir, reuse); 4876 dir, reuse);
4877 if (add_r == OK) 4877 if (add_r == OK)
4878 /* if dir was BACKWARD then honor it just once */ 4878 /* if dir was BACKWARD then honor it just once */
4879 dir = FORWARD; 4879 dir = FORWARD;
5108 { 5108 {
5109 char_u *p; 5109 char_u *p;
5110 5110
5111 if (did_show) 5111 if (did_show)
5112 msg_putchar('\n'); /* cursor below last one */ 5112 msg_putchar('\n'); /* cursor below last one */
5113 else 5113 else if (!msg_silent)
5114 gotocmdline(TRUE); /* cursor at status line */ 5114 gotocmdline(TRUE); /* cursor at status line */
5115 if (got_int) /* 'q' typed at "--more--" message */ 5115 if (got_int) /* 'q' typed at "--more--" message */
5116 return; 5116 return;
5117 for (;;) 5117 for (;;)
5118 { 5118 {