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/09 19:05:16 UTC

cvs commit: xml-xalan/c/src/XSLT Stylesheet.cpp

dbertoni    00/05/09 10:05:15

  Modified:    c/src/XSLT Stylesheet.cpp
  Log:
  Fixed bug with top-level variables not being defined.
  
  Revision  Changes    Path
  1.16      +2 -1      xml-xalan/c/src/XSLT/Stylesheet.cpp
  
  Index: Stylesheet.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/Stylesheet.cpp,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Stylesheet.cpp	2000/05/08 17:29:35	1.15
  +++ Stylesheet.cpp	2000/05/09 17:05:15	1.16
  @@ -1122,7 +1122,8 @@
   					}
   				}
   			}
  -			else
  +
  +			if (isParam == false)
   			{
   				XalanDocument* const	doc = executionContext.getRootDocument();