You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/05/05 17:10:33 UTC

cvs commit: xml-xalan/c/src/XPath XPathExpression.cpp

dbertoni    00/05/05 08:10:32

  Modified:    c/src/XPath XPathExpression.cpp
  Log:
  Fixed problem with length of eFROM_NAMESPACE op code.
  
  Revision  Changes    Path
  1.7       +1 -1      xml-xalan/c/src/XPath/XPathExpression.cpp
  
  Index: XPathExpression.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/XPathExpression.cpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- XPathExpression.cpp	2000/05/03 21:21:16	1.6
  +++ XPathExpression.cpp	2000/05/05 15:10:32	1.7
  @@ -738,7 +738,7 @@
   	theMap[eFROM_PRECEDING] = 2 + s__opCodeMapLengthIndex;
   	theMap[eFROM_PRECEDING_SIBLINGS] = 2 + s__opCodeMapLengthIndex;
   	theMap[eFROM_SELF] = 2 + s__opCodeMapLengthIndex;
  -	theMap[eFROM_NAMESPACE] = 1 + s__opCodeMapLengthIndex;
  +	theMap[eFROM_NAMESPACE] = 2 + s__opCodeMapLengthIndex;
   //	theMap[eFROM_ATTRIBUTE] = -1;
   //	theMap[eFROM_DOC] = -1;
   //	theMap[eFROM_DOCREF] = -1;