dbertoni 2003/07/15 15:29:55
Modified: c/src/xalanc/XMLSupport FormatterToXML_UTF16.hpp
Log:
Fixed bug in isContentSpecial().
Revision Changes Path
1.4 +1 -1
xml-xalan/c/src/xalanc/XMLSupport/FormatterToXML_UTF16.hpp
Index: FormatterToXML_UTF16.hpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/xalanc/XMLSupport/FormatterToXML_UTF16.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- FormatterToXML_UTF16.hpp 15 Jul 2003 05:14:12 -0000 1.3
+++ FormatterToXML_UTF16.hpp 15 Jul 2003 22:29:55 -0000 1.4
@@ -614,7 +614,7 @@
static bool
isContentSpecial(XalanDOMChar theChar)
{
- if ((theChar < kSpecialsSize) || (s_specialChars[theChar] &
kContentSpecial))
+ if ((theChar < kSpecialsSize) && (s_specialChars[theChar] &
kContentSpecial))
{
return true;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]