[Templates-cvs] cvs commit: Template2/parser Grammar.pm.skel

cvs@template-toolkit.org cvs@template-toolkit.org


cvs         05/11/29 07:35:19

  Modified:    parser   Grammar.pm.skel
  Log:
  * fixed broken lines
  
  Revision  Changes    Path
  2.12      +6 -5      Template2/parser/Grammar.pm.skel
  
  Index: Grammar.pm.skel
  ===================================================================
  RCS file: /template-toolkit/Template2/parser/Grammar.pm.skel,v
  retrieving revision 2.11
  retrieving revision 2.12
  diff -u -r2.11 -r2.12
  --- Grammar.pm.skel	2004/12/24 14:50:22	2.11
  +++ Grammar.pm.skel	2005/11/29 07:35:19	2.12
  @@ -26,7 +26,7 @@
   #
   #------------------------------------------------------------------------
   #
  -# $Id: Grammar.pm.skel,v 2.11 2004/12/24 14:50:22 abw Exp $
  +# $Id: Grammar.pm.skel,v 2.12 2005/11/29 07:35:19 abw Exp $
   #
   #========================================================================
   
  @@ -37,7 +37,7 @@
   use strict;
   use vars qw( $VERSION );
   
  -$VERSION  = sprintf("%d.%02d", q$Revision: 2.11 $ =~ /(\d+)\.(\d+)/);
  +$VERSION  = sprintf("%d.%02d", q$Revision: 2.12 $ =~ /(\d+)\.(\d+)/);
   
   my (@RESERVED, %CMPOP, $LEXTABLE, $RULES, $STATES);
   my ($factory, $rawstart);
  @@ -61,18 +61,19 @@
   # are not converted to their stringwise equivalents.  I added 'gt' et al, 
   # briefly for v2.04d and then took them out again in 2.04e.
   
  +
   %CMPOP = qw( 
       != ne
       == eq
  -#    eq eq  # uncomment these lines to enable the eq, lt and gt operators      
  -#    lt lt
  -#    gt gt
       <  <
       >  >
       >= >=
       <= <=
   );
   
  +#    eq eq  # add these lines to the above to 
  +#    lt lt  # enable the eq, lt and gt operators      
  +#    gt gt
   
   #========================================================================
   # Lexer Token Table