summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-09-12 18:19:46 +0200
committerBram Moolenaar <Bram@vim.org>2012-09-12 18:19:46 +0200
commitfca93c093e0ec86331171ca4e169f73aa81ebfef (patch)
tree22aa7c336f0cd071474c14cadfdc89b5da97db1e
parentc11073c9aa2b668a9c1faa8a2419d7984d8367ca (diff)
downloadvim-git-fca93c093e0ec86331171ca4e169f73aa81ebfef.tar.gz
updated for version 7.3.660v7.3.660
Problem: ":help !" jumps to help for ":!". Solution: Adjust check for tag header line. (Andy Wokula)
-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 4f2426b90..34e9c4ff2 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -1797,7 +1797,7 @@ line_read_in:
*/
if (state == TS_START)
{
- if (STRNCMP(lbuf, "!_TAG_", 6) <= 0)
+ if (STRNCMP(lbuf, "!_TAG_", 6) == 0)
{
/*
* Read header line.
diff --git a/src/version.c b/src/version.c
index 06afdf2cc..3851b3f88 100644
--- a/src/version.c
+++ b/src/version.c
@@ -720,6 +720,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 660,
+/**/
659,
/**/
658,