summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-07-25 20:56:39 +0000
committervimboss <devnull@localhost>2007-07-25 20:56:39 +0000
commit4129738516a95c36df5ee1eb3702d0bb10bf8b96 (patch)
tree2edb9c372d819d4545cbcd65ca6a719391ac9f1e
parente5f406680b705906524309dcbdc2b680b2710937 (diff)
downloadvim-4129738516a95c36df5ee1eb3702d0bb10bf8b96.tar.gz
updated for version 7.1-039v7.1.039v7-1-039
-rw-r--r--src/ex_cmds.c4
-rw-r--r--src/testdir/test63.in0
-rw-r--r--src/testdir/test63.ok0
-rw-r--r--src/version.c2
4 files changed, 4 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 0ecfda24..46671dca 100644
--- 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
index 00000000..e69de29b
--- /dev/null
+++ b/src/testdir/test63.in
diff --git a/src/testdir/test63.ok b/src/testdir/test63.ok
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/src/testdir/test63.ok
diff --git a/src/version.c b/src/version.c
index 61b1a3d6..f8e40fbb 100644
--- 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,