dbertoni    01/01/25 09:09:38

  Modified:    c/src/XSLT StylesheetHandler.cpp
  Log:
  Don't generate text nodes when handling processing instructions and comments. 
 We may have to revisit this.
  
  Revision  Changes    Path
  1.52      +4 -4      xml-xalan/c/src/XSLT/StylesheetHandler.cpp
  
  Index: StylesheetHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/StylesheetHandler.cpp,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- StylesheetHandler.cpp     2001/01/08 18:29:54     1.51
  +++ StylesheetHandler.cpp     2001/01/25 17:09:36     1.52
  @@ -1423,7 +1423,7 @@
        if (m_exceptionPending == true)
                return;
   
  -     processAccumulatedText();
  +     clear(m_accumulateText);
   }
   
   
  @@ -1435,7 +1435,7 @@
        if (m_exceptionPending == true)
                return;
   
  -     processAccumulatedText();
  +     clear(m_accumulateText);
   }
   
   
  @@ -1447,7 +1447,7 @@
        if (m_exceptionPending == true)
                return;
   
  -  // No action for the moment.
  +     clear(m_accumulateText);
   }
   
   
  @@ -1459,7 +1459,7 @@
        if (m_exceptionPending == true)
                return;
   
  -  // No action for the moment.
  +     clear(m_accumulateText);
   }
   
   
  
  
  

Reply via email to