texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/makeinfo sectioning.c,1.2,1.3


From: dirt
Subject: texinfo/makeinfo sectioning.c,1.2,1.3
Date: Tue, 23 Dec 2003 11:39:02 +0100

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

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

        * makeinfo/sectioning.c (sectioning_html): do not insert "%s "
        unconditionally for title enumerations, which causes unnecessary
        blanks for @unnumbered and @top.



Index: sectioning.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/sectioning.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** sectioning.c        2003/12/13 12:02:09     1.2
--- sectioning.c        2003/12/23 10:39:00     1.3
***************
*** 536,540 ****
  
    /* Produce "X.Y" and add it to HTML output.  */
!   add_word_args ("%s ", handle_enum_increment (level, index));
  
    /* add the section name to both HTML and macro-expanded output.  */
--- 536,544 ----
  
    /* Produce "X.Y" and add it to HTML output.  */
!   {
!     char *title_number = handle_enum_increment (level, index);
!     if (strlen (title_number) > 0)
!       add_word_args ("%s ", title_number);
!   }
  
    /* add the section name to both HTML and macro-expanded output.  */



reply via email to

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