diff options
Diffstat (limited to 'parsing/parse.ml')
-rw-r--r-- | parsing/parse.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/parse.ml b/parsing/parse.ml index eaa26e56a..56e32c4aa 100644 --- a/parsing/parse.ml +++ b/parsing/parse.ml @@ -32,7 +32,7 @@ let rec skip_phrase lexbuf = let maybe_skip_phrase lexbuf = if Parsing.is_current_lookahead Parser.SEMISEMI - or Parsing.is_current_lookahead Parser.EOF + || Parsing.is_current_lookahead Parser.EOF then () else skip_phrase lexbuf |