X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fcic_disambiguation%2FcicTextualParser2.ml;h=7c0dfc1c6ab31c04a36d7f6ed8189d3cc09fbfa6;hb=1db1b755ae0878041b3051886823275c19b01419;hp=efe959de8cace2f434db20f3a48ad82783770e64;hpb=54fa17c6db3db0b863cbfa6a0d4b7bf0d0641def;p=helm.git diff --git a/helm/ocaml/cic_disambiguation/cicTextualParser2.ml b/helm/ocaml/cic_disambiguation/cicTextualParser2.ml index efe959de8..7c0dfc1c6 100644 --- a/helm/ocaml/cic_disambiguation/cicTextualParser2.ml +++ b/helm/ocaml/cic_disambiguation/cicTextualParser2.ml @@ -162,7 +162,7 @@ EXTEND return_term loc (CicAst.Binder (`Pi, (Cic.Anonymous, Some t1), t2)) ] - | "eq" LEFTA + | "relop" LEFTA [ t1 = term; SYMBOL "="; t2 = term -> return_term loc (CicAst.Appl [CicAst.Symbol ("eq", 0); t1; t2]) ] @@ -235,7 +235,7 @@ EXTEND | IDENT "elim"; IDENT "type"; t = tactic_term -> return_tactic loc (TacticAst.ElimType t) | IDENT "elim"; t1 = tactic_term; - using = OPT [ IDENT "using"; using = tactic_term -> using ] -> + using = OPT [ "using"; using = tactic_term -> using ] -> return_tactic loc (TacticAst.Elim (t1, using)) | IDENT "exact"; t = tactic_term -> return_tactic loc (TacticAst.Exact t) | IDENT "exists" -> return_tactic loc TacticAst.Exists