From: Bram Moolenaar Date: Wed, 12 Sep 2012 16:19:46 +0000 (+0200) Subject: updated for version 7.3.660 X-Git-Tag: v7.3.660 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fca93c093e0ec86331171ca4e169f73aa81ebfef;p=vim updated for version 7.3.660 Problem: ":help !" jumps to help for ":!". Solution: Adjust check for tag header line. (Andy Wokula) --- 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 @@ -719,6 +719,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 660, /**/ 659, /**/