This patch adds some quote marks to the head of html output. It's not
critical. The html 4.0 specification says that quotes in the places
added are optional, but some scripts/programs (e.g. ESR's sitemap)
expect the quote marks to be there. And while the html spec does say
the quotes are optional, it prefers that the quotes be used.

--- texinfo-4.0/makeinfo/html.c~        Sun Oct 24 19:24:41 1999
+++ texinfo-4.0/makeinfo/html.c Sun Nov 14 21:02:14 1999
@@ -47,9 +47,9 @@
     add_word_args ("; charset=%s", document_encoding);
   add_word ("\">\n");
   
-  add_word_args ("<meta name=description content=\"%s\">\n", 
(description)?description:html_title);
-  add_word_args ("<meta name=generator content=\"makeinfo %s\">\n", VERSION);
-  add_word ("<link href=\"http://texinfo.org/\" rel=generator-home>\n");
+  add_word_args ("<meta name=\"description\" content=\"%s\">\n", 
+(description)?description:html_title);
+  add_word_args ("<meta name=\"generator\" content=\"makeinfo %s\">\n", VERSION);
+  add_word ("<link href=\"http://texinfo.org/\" rel=\"generator-home\">\n");
 
   if (title)
     free (html_title);

Reply via email to