0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.4.025

Problem:    Reading before start of a string.
Solution:   Do not call mb_ptr_back() at start of a string. (Dominique Pelle)
This commit is contained in:
Bram Moolenaar
2013-09-08 16:03:45 +02:00
parent 3b26239341
commit 0300e465aa
2 changed files with 7 additions and 3 deletions

View File

@@ -5187,11 +5187,13 @@ ins_complete(c)
/* Go back to just before the first filename character. */
mb_ptr_back(line, p);
while (vim_isfilec(PTR2CHAR(p)) && p >= line)
while (p > line && vim_isfilec(PTR2CHAR(p)))
mb_ptr_back(line, p);
startcol = (int)(p - line);
startcol = (int)(p - line) + 1;
if (p == line && vim_isfilec(PTR2CHAR(p)))
startcol = 0;
compl_col += ++startcol;
compl_col += startcol;
compl_length = (int)curs_col - startcol;
compl_pattern = addstar(line + compl_col, compl_length,
EXPAND_FILES);