]> matita.cs.unibo.it Git - helm.git/commitdiff
bugfix: "in" is an IDENT, not a keyword
authorStefano Zacchiroli <zack@upsilon.cc>
Fri, 20 Feb 2004 18:00:54 +0000 (18:00 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Fri, 20 Feb 2004 18:00:54 +0000 (18:00 +0000)
helm/ocaml/cic_disambiguation/cicTextualParser2.ml

index cd1de44879c723caadc256fd30cbdc8fc72f4e9d..efe959de8cace2f434db20f3a48ad82783770e64 100644 (file)
@@ -203,7 +203,9 @@ EXTEND
       | PAREN "("; t = term; PAREN ")" -> return_term loc t
       ]
     ];
-  tactic_where: [ [ where = OPT [ "in"; ident = IDENT -> ident ] -> where ] ];
+  tactic_where: [
+    [ where = OPT [ IDENT "in"; ident = IDENT -> ident ] -> where ]
+  ];
   tactic_term: [ [ t = term -> t ] ];
   ident_list0: [
     [ PAREN "["; idents = LIST0 IDENT SEP SYMBOL ";"; PAREN "]" -> idents ]