dbertoni 00/12/28 18:40:49
Modified: c/src/XSLT ElemCopyOf.cpp
Log:
Better fix than the previous revision -- call flushPending() unless it's an
attribute node.
Revision Changes Path
1.12 +1 -1 xml-xalan/c/src/XSLT/ElemCopyOf.cpp
Index: ElemCopyOf.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemCopyOf.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ElemCopyOf.cpp 2000/12/29 01:35:30 1.11
+++ ElemCopyOf.cpp 2000/12/29 02:40:48 1.12
@@ -165,7 +165,7 @@
while(pos != 0)
{
- if(XalanNode::ELEMENT_NODE ==
pos->getNodeType())
+ if(pos->getNodeType() !=
XalanNode::ATTRIBUTE_NODE)
{
executionContext.flushPending();
}