Taddeus Kroes 12 년 전
부모
커밋
cd39b017b6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 }