Taddeus Kroes il y a 12 ans
Parent
commit
cd39b017b6
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      lexer.mll

+ 1 - 1
lexer.mll

@@ -95,5 +95,5 @@ rule token = parse
 (* Multi-line comments *)
 and comment = parse
     | '\r' | '\n' | "\r\n"  { next_line lexbuf; comment lexbuf }
-    | _                     { comment lexbuf }
     | "*/"                  { token lexbuf }
+    | _                     { comment lexbuf }