You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dl...@locus.apache.org on 2000/03/22 16:48:55 UTC

cvs commit: xml-xalan/samples/Extensions 1basicJscript.xsl

dleslie     00/03/22 07:48:55

  Modified:    samples/Extensions 1basicJscript.xsl
  Log:
  Correction: turned return null; from a comment to an executable statement
  in the timelapse() function.
  
  Revision  Changes    Path
  1.2       +1 -1      xml-xalan/samples/Extensions/1basicJscript.xsl
  
  Index: 1basicJscript.xsl
  ===================================================================
  RCS file: /home/cvs/xml-xalan/samples/Extensions/1basicJscript.xsl,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- 1basicJscript.xsl	2000/02/12 00:00:10	1.1
  +++ 1basicJscript.xsl	2000/03/22 15:48:55	1.2
  @@ -18,7 +18,7 @@
           multiplier=parseInt(elem.getAttribute("multiplier"));
           // The element return value is placed in the result tree.
           // If you do not want a return value, return null.
  -        // return null;
  +        return null;
         }
         function getdate(numdays)
         {