mirror of
https://github.com/vim/vim.git
synced 2025-09-26 04:04:07 -04:00
updated for version 7.1-039
This commit is contained in:
@@ -6374,9 +6374,9 @@ helptags_one(dir, ext, tagfname)
|
|||||||
for (i = 0; i < ga.ga_len; ++i)
|
for (i = 0; i < ga.ga_len; ++i)
|
||||||
{
|
{
|
||||||
s = ((char_u **)ga.ga_data)[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 */
|
/* help-tags entry was added in formatted form */
|
||||||
fprintf(fd_tags, (char *)s);
|
fputs((char *)s, fd_tags);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
fprintf(fd_tags, "%s\t/*", s);
|
fprintf(fd_tags, "%s\t/*", s);
|
||||||
|
0
src/testdir/test63.in
Normal file
0
src/testdir/test63.in
Normal file
0
src/testdir/test63.ok
Normal file
0
src/testdir/test63.ok
Normal file
@@ -666,6 +666,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
39,
|
||||||
/**/
|
/**/
|
||||||
38,
|
38,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user