1
0
forked from aniani/vim

updated for version 7.0b

This commit is contained in:
Bram Moolenaar
2006-03-24 22:21:52 +00:00
parent db552d60ec
commit c01140a1a0
173 changed files with 4011 additions and 2470 deletions

View File

@@ -3835,15 +3835,16 @@ get_tags(list, pat)
char_u *s, *n;
int len;
/* Add extra field as a dict entry. */
/* Add extra field as a dict entry. Fields are
* separated by Tabs. */
n = p;
while (*p != NUL && *p > ' ' && *p < 127 && *p != ':')
while (*p != NUL && *p >= ' ' && *p < 127 && *p != ':')
++p;
len = p - n;
if (*p == ':' && len > 0)
{
s = ++p;
while (*p != NUL && *p > ' ' && *p < 127)
while (*p != NUL && *p >= ' ' && *p < 127)
++p;
n[len] = NUL;
if (add_tag_field(dict, (char *)n, s, p) == FAIL)