dbertoni 01/12/10 08:30:59
Modified: c/src/XSLT ElemNumber.cpp
Log:
Duh! Fixed bug in checking the length of the grouping separator.
Revision Changes Path
1.51 +1 -1 xml-xalan/c/src/XSLT/ElemNumber.cpp
Index: ElemNumber.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XSLT/ElemNumber.cpp,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ElemNumber.cpp 2001/12/07 18:57:56 1.50
+++ ElemNumber.cpp 2001/12/10 16:30:59 1.51
@@ -737,7 +737,7 @@
m_groupingSeparator_avt->evaluate(digitGroupSepValue,
contextNode,
*this, executionContext);
- if (length(digitGroupSepValue) != 1)
+ if (length(digitGroupSepValue) > 1)
{
executionContext.error(
"The grouping-separator value must be one character in
length",
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]