dbertoni 00/06/28 10:52:07
Modified: c/src/XercesPlatformSupport XercesDOMPrintWriter.cpp
Log:
Flush after println().
Revision Changes Path
1.8 +2 -0
xml-xalan/c/src/XercesPlatformSupport/XercesDOMPrintWriter.cpp
Index: XercesDOMPrintWriter.cpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/XercesPlatformSupport/XercesDOMPrintWriter.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- XercesDOMPrintWriter.cpp 2000/06/27 14:50:17 1.7
+++ XercesDOMPrintWriter.cpp 2000/06/28 17:52:04 1.8
@@ -260,6 +260,8 @@
XercesDOMPrintWriter::println()
{
m_OutputStream.write(XMLCh('\n'));
+
+ flush();
}