Fixed an unintentional concatenation of two patterns due to a missing
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Fri, 26 Jan 2007 21:29:18 +0000 (21:29 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Fri, 26 Jan 2007 21:29:18 +0000 (21:29 +0000)
semi-colon. The error was not covered by the (meagre) test input.

git-svn-id: http://svn.complang.org/ragel/trunk@17 052ea7fc-9027-0410-9066-f65837a77df0

test/tokstart1.rl

index b6df225..ae1ab3f 100644 (file)
@@ -72,7 +72,7 @@ struct Scanner
                digit+ exponent float_suffix? ) $~ to_act $* from_act;
        
        # Integer decimal. Leading part buffered by float.
-       ( ( '0' | [1-9] [0-9]* ) [ulUL]{0,3} ) $~ to_act $* from_act
+       ( ( '0' | [1-9] [0-9]* ) [ulUL]{0,3} ) $~ to_act $* from_act;
 
        # Integer octal. Leading part buffered by float.
        ( '0' [0-9]+ [ulUL]{0,2} ) $~ to_act $* from_act;