diff options
Diffstat (limited to 'src/process_file.ml')
| -rw-r--r-- | src/process_file.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process_file.ml b/src/process_file.ml index 850a80f2..a674c66f 100644 --- a/src/process_file.ml +++ b/src/process_file.ml @@ -56,9 +56,9 @@ let get_lexbuf fn = Lexing.pos_cnum = 0; }; lexbuf -let parse_file (f : string) : (Parse_ast.defs * Parse_ast.lex_skips) = +let parse_file (f : string) : Parse_ast.defs = let lexbuf = get_lexbuf f in - Parser.file (Lexer.token []) lexbuf + Parser.file Lexer.token lexbuf (* try Parser.file (Lexer.token []) lexbuf with |
