# HG changeset patch # User vimboss # Date 1231864101 0 # Node ID 65c332f15dbf3376ed5aeea423e8f1584a65ff29 # Parent be7491f23e9d8818821de61d9ce53cb1cb1c7dc9 updated for version 7.2-083 diff --git a/src/tag.c b/src/tag.c --- a/src/tag.c +++ b/src/tag.c @@ -515,7 +515,7 @@ do_tag(tag, type, count, forceit, verbos * If a count is supplied to the ":tag " 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 --- 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,