Skip to content
Snippets Groups Projects
Commit fca93c09 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.660

Problem:    ":help !" jumps to help for ":!".
Solution:   Adjust check for tag header line. (Andy Wokula)
parent c11073c9
No related branches found
Tags v7.3.660
No related merge requests found
......@@ -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.
......
......@@ -719,6 +719,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
660,
/**/
659,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment