summaryrefslogtreecommitdiffstats
path: root/src/tag.c
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 /src/tag.c
parentc11073c9aa2b668a9c1faa8a2419d7984d8367ca (diff)
updated for version 7.3.660v7.3.660
Problem: ":help !" jumps to help for ":!". Solution: Adjust check for tag header line. (Andy Wokula)
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.c b/src/tag.c
index 4f2426b90c..34e9c4ff27 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.