summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2009-01-13 16:28:21 +0000
committervimboss <devnull@localhost>2009-01-13 16:28:21 +0000
commitb9c0793332ad59f6083133ee72579d22584cf5a0 (patch)
tree1538f922a789c7d38a2912555ecd93c961972b84
parent869582f3d4b82582eebd46f1fd0a1a53a2ab4955 (diff)
downloadvim-b9c0793332ad59f6083133ee72579d22584cf5a0.tar.gz
updated for version 7.2-083v7.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 62533f64..8c36ec3f 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 db226cea..8002b84c 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,