texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo/makeinfo makeinfo.c,1.9,1.10


From: dirt
Subject: texinfo/makeinfo makeinfo.c,1.9,1.10
Date: Tue, 23 Dec 2003 13:53:34 +0100

Update of /cvsroot/texinfo/texinfo/makeinfo
In directory sheep:/tmp/cvs-serv28818/makeinfo

Modified Files:
        makeinfo.c 
Log Message:
2003-12-23  Alper Ersoy  <address@hidden>

        * makeinfo/makeinfo.c (convert_from_loaded_file): when finished, do
        not indent body and html closing tags, and do not use comment tags if
        there is no trailing information.



Index: makeinfo.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/makeinfo.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** makeinfo.c  2003/12/23 10:50:33     1.9
--- makeinfo.c  2003/12/23 12:53:32     1.10
***************
*** 1702,1705 ****
--- 1702,1706 ----
        if (html)
          {
+           no_indent = 1;
            start_paragraph ();
            add_word ("</body></html>\n");
***************
*** 1710,1725 ****
        {
          char *trailer = info_trailer ();
!       if (!xml && !docbook)
!         {
!           if (html)
!             insert_string ("<!--");
!           if (trailer)
!             {
!               insert_string (trailer);
!               free (trailer);
!             }
!           if (html)
!             insert_string ("\n-->\n");
!         }
        }
  
--- 1711,1723 ----
        {
          char *trailer = info_trailer ();
!       if (!xml && !docbook && trailer)
!           {
!             if (html)
!               insert_string ("<!--");
!             insert_string (trailer);
!             free (trailer);
!             if (html)
!               insert_string ("\n-->\n");
!           }
        }
  



reply via email to

[Prev in Thread] Current Thread [Next in Thread]