0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

updated for version 7.1-039

This commit is contained in:
Bram Moolenaar
2007-07-25 20:56:39 +00:00
parent 5002c296f0
commit f621048b53
4 changed files with 4 additions and 2 deletions

View File

@@ -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);