summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-01-13 16:28:21 +0000
committerBram Moolenaar <Bram@vim.org>2009-01-13 16:28:21 +0000
commit51460cd634d29b3612e7443c34bec5c20207ddad (patch)
tree1538f922a789c7d38a2912555ecd93c961972b84
parent1418a0d586ed1b429ab9e0408f31e6955758b8c5 (diff)
downloadvim-git-51460cd634d29b3612e7443c34bec5c20207ddad.tar.gz
updated for version 7.2-083v7.2.083
-rw-r--r--src/tag.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/tag.c b/src/tag.c
index 62533f64e..8c36ec3fb 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -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,