diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-07-18 09:26:30 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-07-18 09:26:30 +0000 |
commit | de1656ec2042de8d5a9b89c6eb1056d3f73835c6 (patch) | |
tree | c30c6cd59e97190569960a5fa252f443b2137ff1 /src | |
parent | ffd66c45084dfb67348f9e799a8ec3fe037690bd (diff) | |
download | vim-git-de1656ec2042de8d5a9b89c6eb1056d3f73835c6.tar.gz |
updated for version 7.2b-006v7.2b.006
Diffstat (limited to 'src')
-rw-r--r-- | src/tag.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -3854,6 +3854,8 @@ get_tags(list, pat) /* Skip field without colon. */ while (*p != NUL && *p >= ' ') ++p; + if (*p == NUL) + break; } } } diff --git a/src/version.c b/src/version.c index 95d6d54f0..d8a008d78 100644 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 6, +/**/ 5, /**/ 4, |