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

updated for version 7.0123

This commit is contained in:
Bram Moolenaar
2005-08-04 21:29:45 +00:00
parent 04a09c1975
commit 1d94f9b30e
11 changed files with 292 additions and 64 deletions

View File

@@ -323,13 +323,12 @@ qf_init_ext(efile, buf, tv, errorformat, newlist, lnumfirst, lnumlast)
&& efmp[1] != '\\' && efmp[1] != '%')
{
/* A file name may contain spaces, but this isn't in
* "\f". use "[^x]\+" instead (x is next character) */
*ptr++ = '[';
*ptr++ = '^';
*ptr++ = efmp[1];
*ptr++ = ']';
*ptr++ = '\\';
*ptr++ = '+';
* "\f". For "%f:%l:%m" there may be a ":" in the
* file name. Use ".\{-1,}x" instead (x is the next
* character), the requirement that :999: follows
* should work. */
STRCPY(ptr, ".\\{-1,}");
ptr += 7;
}
else
{