# HG changeset patch # User vimboss # Date 1185396999 0 # Node ID f26d0c74a329cceeed80a7985f5efb5662064283 # Parent 60d21d224d251c448ef76b1b9df087497c06adf4 updated for version 7.1-039 diff --git a/src/ex_cmds.c b/src/ex_cmds.c --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -6374,9 +6374,9 @@ helptags_one(dir, ext, tagfname) for (i = 0; i < ga.ga_len; ++i) { s = ((char_u **)ga.ga_data)[i]; - if (STRNCMP(s, "help-tags", 9) == 0) + if (STRNCMP(s, "help-tags\t", 10) == 0) /* help-tags entry was added in formatted form */ - fprintf(fd_tags, (char *)s); + fputs((char *)s, fd_tags); else { fprintf(fd_tags, "%s\t/*", s); diff --git a/src/testdir/test63.in b/src/testdir/test63.in new file mode 100644 diff --git a/src/testdir/test63.ok b/src/testdir/test63.ok new file mode 100644 diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 39, +/**/ 38, /**/ 37,