texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/makeinfo xml.c,1.35,1.36


From: dirt
Subject: texinfo/makeinfo xml.c,1.35,1.36
Date: Fri, 27 Feb 2004 06:31:31 +0100

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

Modified Files:
        xml.c 
Log Message:
2004-02-27  Alper Ersoy  <address@hidden>

        * makeinfo/xml.c (xml_insert_element_with_attribute): if we are
        closing either TABLEITEM, ITEM or DEFINITIONITEM during string
        execution, update relevant state.



Index: xml.c
===================================================================
RCS file: /cvsroot/texinfo/texinfo/makeinfo/xml.c,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** xml.c       27 Feb 2004 03:53:08 -0000      1.35
--- xml.c       27 Feb 2004 05:31:29 -0000      1.36
***************
*** 831,834 ****
--- 831,848 ----
      return;
  
+   if (executing_string && arg == END)
+     switch (elt)
+       {
+       case TABLEITEM:
+         xml_in_tableitem[xml_table_level] = 0;
+         break;
+       case ITEM:
+         xml_in_item[xml_table_level] = 0;
+         break;
+       case DEFINITIONTERM:
+         xml_in_def_item[xml_definition_level] = 0;
+         break;
+       }
+ 
    /* We are special-casing FIGURE element for docbook.  It does appear in
       the tag stack, but not in the output.  This is to make element 
replacement



reply via email to

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