diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-01-13 16:28:21 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-01-13 16:28:21 +0000 |
commit | 51460cd634d29b3612e7443c34bec5c20207ddad (patch) | |
tree | 1538f922a789c7d38a2912555ecd93c961972b84 | |
parent | 1418a0d586ed1b429ab9e0408f31e6955758b8c5 (diff) | |
download | vim-git-51460cd634d29b3612e7443c34bec5c20207ddad.tar.gz |
updated for version 7.2-083v7.2.083
-rw-r--r-- | src/tag.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -515,7 +515,7 @@ do_tag(tag, type, count, forceit, verbose) * If a count is supplied to the ":tag <name>" command, then * jump to count'th matching tag. */ - if (type == DT_TAG && count > 0) + if (type == DT_TAG && *tag != NUL && count > 0) cur_match = count - 1; if (type == DT_SELECT || type == DT_JUMP diff --git a/src/version.c b/src/version.c index db226cea2..8002b84c2 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 */ /**/ + 83, +/**/ 82, /**/ 81, |