# HG changeset patch # User Bram Moolenaar # Date 1347466786 -7200 # Node ID 8fdadfccd184b7de73811a3a18dc8815b7eb3434 # Parent 1052677493beb941eab0d1e33d63c73ee4148350 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 --- 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 --- 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,