The appended patch fixes a trivial capiatlization bug.  This is needed
for xhtml, which I think is what makeinfo --html should produce.

This is only a small step in producing xhtml.  To start with, we need to
emit close tags - e.g. a </p> for each <p>.
-- 
        --Per Bothner
[EMAIL PROTECTED]   http://www.bothner.com/per/
--- insertion.c~        Wed Jan 16 07:52:54 2002
+++ insertion.c Wed Feb 13 10:00:38 2002
@@ -840,7 +840,7 @@
          case deftypeivar:
            if (html)
              /* close the tables which has been opened in defun.c */
-              add_word ("</TD></TR>\n</TABLE>\n");
+              add_word ("</td></tr>\n</table>\n");
             break;
           } /* switch (base_type)... */
   

Reply via email to