mkwan       2002/09/16 12:40:28

  Modified:    java/src/org/apache/xalan/xsltc/compiler xpath.cup
  Log:
  For extension integration. The nodeset extension function can be used as
  node-set in the http://exslt.org/common namespace.
  
  Revision  Changes    Path
  1.42      +2 -2      
xml-xalan/java/src/org/apache/xalan/xsltc/compiler/xpath.cup
  
  Index: xpath.cup
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/compiler/xpath.cup,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- xpath.cup 15 Sep 2002 14:26:36 -0000      1.41
  +++ xpath.cup 16 Sep 2002 19:40:28 -0000      1.42
  @@ -905,7 +905,7 @@
               RESULT = new NamespaceUriCall(fname, argl);
          }
          // Special case for extension function nodeset()
  -          else if (fname.getLocalPart().equals("nodeset")) {
  +          else if (fname.getLocalPart().equals("nodeset") || 
fname.getLocalPart().equals("node-set")) {
            parser.setCallsNodeset(true);  // implies MultiDOM
               RESULT = new FunctionCall(fname, argl);
          }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to