dbertoni 01/01/30 13:59:04
Modified: c/src/XPath XPathProcessorImpl.cpp
Log:
Fix for NCNames that start with '_'.
Revision Changes Path
1.32 +2 -1 xml-xalan/c/src/XPath/XPathProcessorImpl.cpp
Index: XPathProcessorImpl.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathProcessorImpl.cpp,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- XPathProcessorImpl.cpp 2001/01/26 16:25:00 1.31
+++ XPathProcessorImpl.cpp 2001/01/30 21:59:01 1.32
@@ -1870,7 +1870,8 @@
else if (tokenIs(XalanUnicode::charAsterisk) ||
tokenIs(XalanUnicode::charCommercialAt) ||
tokenIs(XalanUnicode::charSolidus) ||
- XalanXMLChar::isLetter(charAt(m_token, 0)))
+ (tokenIs(XalanUnicode::charLowLine) ||
+ XalanXMLChar::isLetter(charAt(m_token, 0))))
{
Basis();