texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/makeinfo insertion.c,1.26,1.27 float.c,1.21,1.22


From: dirt
Subject: texinfo/makeinfo insertion.c,1.26,1.27 float.c,1.21,1.22
Date: Tue, 17 Feb 2004 16:44:17 +0100

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

Modified Files:
        insertion.c float.c 
Log Message:
2004-02-17  Alper Ersoy  <address@hidden>

        * makeinfo/insertion.c (end_insertion): use add_html_block_elt instead
        of add_word for </pre> ending @example and the like.
        * makeinfo/float.c (cm_listoffloats): use add_html_block_elt for <li>.



Index: insertion.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/insertion.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** insertion.c 17 Feb 2004 14:58:59 -0000      1.26
--- insertion.c 17 Feb 2004 15:44:15 -0000      1.27
***************
*** 1197,1201 ****
               delete it, or browsers wind up showing an extra blank line.  */
            kill_self_indent (default_indentation_increment);
!           add_word (type == quotation ? "</blockquote>\n" : "</pre>\n");
          }
  
--- 1197,1202 ----
               delete it, or browsers wind up showing an extra blank line.  */
            kill_self_indent (default_indentation_increment);
!           add_html_block_elt (type == quotation
!               ? "</blockquote>\n" : "</pre>\n");
          }
  

Index: float.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/float.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** float.c     13 Feb 2004 22:01:38 -0000      1.21
--- float.c     17 Feb 2004 15:44:15 -0000      1.22
***************
*** 214,221 ****
                  {
                    /* A bit of space for HTML reabality.  */
!                   insert_string ("  <li>");
                    execute_string ("@ref{%s, %s %s: %s}", temp->id, float_type,
                        temp->number, temp->title);
!                   insert_string ("</li>\n");
                  }
                else
--- 214,222 ----
                  {
                    /* A bit of space for HTML reabality.  */
!                   insert_string ("  ");
!                   add_html_block_elt ("<li>");
                    execute_string ("@ref{%s, %s %s: %s}", temp->id, float_type,
                        temp->number, temp->title);
!                   add_html_block_elt ("</li>\n");
                  }
                else



reply via email to

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