geirm       00/12/19 03:46:55

  Modified:    src/java/org/apache/velocity/runtime/parser Parser.jjt
  Log:
  Small fix to make \$!foo work correctly.
  
  Revision  Changes    Path
  1.42      +2 -2      
jakarta-velocity/src/java/org/apache/velocity/runtime/parser/Parser.jjt
  
  Index: Parser.jjt
  ===================================================================
  RCS file: 
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/parser/Parser.jjt,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- Parser.jjt        2000/12/11 04:26:23     1.41
  +++ Parser.jjt        2000/12/19 11:46:54     1.42
  @@ -120,7 +120,7 @@
    *
    * @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
    * @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
  - * @version $Id: Parser.jjt,v 1.41 2000/12/11 04:26:23 geirm Exp $ 
  + * @version $Id: Parser.jjt,v 1.42 2000/12/19 11:46:54 geirm Exp $ 
   */
   public class Parser
   {
  @@ -593,7 +593,7 @@
           }            
       }
   
  -|   <DOLLARBANG: "$!"> 
  +|   <DOLLARBANG: ("\\")* "$!"> 
       { 
           if (! inComment)
           {
  
  
  

Reply via email to