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

updated for version 7.0144

This commit is contained in:
Bram Moolenaar
2005-09-09 19:47:12 +00:00
parent 7ca3043e1e
commit a5373faa17
3 changed files with 24 additions and 26 deletions

View File

@@ -2491,7 +2491,7 @@ ex_vimgrep(eap)
/* Display the file name every second or so. */
seconds = time(NULL);
msg_start();
p = msg_strtrunc(fnames[fi]);
p = msg_strtrunc(fnames[fi], TRUE);
if (p == NULL)
msg_outtrans(fnames[fi]);
else
@@ -2824,10 +2824,7 @@ get_errorlist(list)
int i;
if (qf_curlist >= qf_listcount || qf_lists[qf_curlist].qf_count == 0)
{
EMSG(_(e_quickfix));
return FAIL;
}
qfp = qf_lists[qf_curlist].qf_start;
for (i = 1; !got_int && i <= qf_lists[qf_curlist].qf_count; ++i)