Taddeus Kroes 12 lat temu
rodzic
commit
cd39b017b6
1 zmienionych plików z 1 dodań i 1 usunięć
  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 }