Skip to content

Commit

Permalink
continue fix for #102
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremie Dimino committed Mar 1, 2016
1 parent 87952ab commit b42e1ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions camlp4/Camlp4Parsers/Camlp4OCamlParser.ml
Expand Up @@ -114,8 +114,7 @@ module Make (Syntax : Sig.Camlp4Syntax) = struct
let rec loop = fun
[ [] -> ()
| [ (UIDENT _, _) :: [ (KEYWORD ".", _) :: rest ] ] -> loop rest
| [ (LIDENT _, _) :: [ (KEYWORD "=", _) :: _ ] ] -> ()
| [ (LIDENT _, _) :: [ (KEYWORD ";", _) :: _ ] ] -> ()
| [ (LIDENT _, _) :: [ (KEYWORD ("="|";"|"}"), _) :: _ ] ] -> ()
| [ (LIDENT _, _) ] -> ()
| _ -> raise Stream.Failure
]
Expand Down

0 comments on commit b42e1ba

Please sign in to comment.