From: Stefano Zacchiroli Date: Mon, 4 Oct 2004 09:38:04 +0000 (+0000) Subject: "in" and "and" are now keywords X-Git-Tag: V_0_0_10~101 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=cd1ed24ba5d709ab9b7d31e501c6d85e3f7256e1;p=helm.git "in" and "and" are now keywords --- diff --git a/helm/ocaml/cic_disambiguation/cicTextualLexer2.ml b/helm/ocaml/cic_disambiguation/cicTextualLexer2.ml index ba70d2745..6c2986eaa 100644 --- a/helm/ocaml/cic_disambiguation/cicTextualLexer2.ml +++ b/helm/ocaml/cic_disambiguation/cicTextualLexer2.ml @@ -51,7 +51,8 @@ let regexp uri = let keywords = Hashtbl.create 17 let _ = List.iter (fun keyword -> Hashtbl.add keywords keyword ("", keyword)) - [ "Prop"; "Type"; "Set"; "let"; "Let"; "rec"; "using"; "match"; "with" ] + [ "Prop"; "Type"; "Set"; "let"; "Let"; "rec"; "using"; "match"; "with"; + "in"; "and" ] let error lexbuf msg = raise (Error (Ulexing.lexeme_start lexbuf, Ulexing.lexeme_end lexbuf, msg))