forked from aniani/vim
updated for version 7.0e02
This commit is contained in:
@@ -3844,14 +3844,17 @@ get_tags(list, pat)
|
||||
if (*p == ':' && len > 0)
|
||||
{
|
||||
s = ++p;
|
||||
while (*p != NUL && *p >= ' ' && *p < 127)
|
||||
while (*p != NUL && *p >= ' ')
|
||||
++p;
|
||||
n[len] = NUL;
|
||||
if (add_tag_field(dict, (char *)n, s, p) == FAIL)
|
||||
ret = FAIL;
|
||||
n[len] = ':';
|
||||
}
|
||||
--p;
|
||||
else
|
||||
/* Skip field without colon. */
|
||||
while (*p != NUL && *p >= ' ')
|
||||
++p;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user