From: thurston Date: Fri, 26 Jan 2007 21:29:18 +0000 (+0000) Subject: Fixed an unintentional concatenation of two patterns due to a missing X-Git-Tag: 2.0_alpha~468 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9122e6914dcd1c2eeb881b8bffbe59c60633577;p=external%2Fragel.git Fixed an unintentional concatenation of two patterns due to a missing 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 --- diff --git a/test/tokstart1.rl b/test/tokstart1.rl index b6df225..ae1ab3f 100644 --- a/test/tokstart1.rl +++ b/test/tokstart1.rl @@ -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;