aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runtime/doc/Makefile2
-rw-r--r--runtime/doc/makehtml.awk4
2 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile
index dabbcd08d9..18d32c0820 100644
--- a/runtime/doc/Makefile
+++ b/runtime/doc/Makefile
@@ -13,7 +13,7 @@ HTMLS = $(DOCS:.txt=.html)
.SUFFIXES: .c .o .txt .html
# Awk version of .txt to .html conversion.
-html: noerrors $(HTMLS)
+html: noerrors vimindex.html $(HTMLS)
@if test -f errors.log; then cat errors.log; fi
noerrors:
diff --git a/runtime/doc/makehtml.awk b/runtime/doc/makehtml.awk
index 216bb5fac1..6e93c01c54 100644
--- a/runtime/doc/makehtml.awk
+++ b/runtime/doc/makehtml.awk
@@ -135,11 +135,11 @@ NR == 1 { nf=split(FILENAME,f,".")
# common case - Latin1
print "<META HTTP-EQUIV=\"Content-type\" content=\"text/html; charset=ISO-8859-1\">";
}
- print "<TITLE>Vim documentation: " f[1] "</TITLE>";
+ print "<TITLE>Nvim documentation: " f[1] "</TITLE>";
print "</HEAD>";
print "<BODY BGCOLOR=\"#ffffff\">";
- print "<H1>Vim documentation: " f[1] "</H1>";
+ print "<H1>Nvim documentation: " f[1] "</H1>";
print "<A NAME=\"top\"></A>";
if ( FILENAME != "help.txt" ) {
print "<A HREF=\"index.html\">main help file</A>\n";