From: Claudio Sacerdoti Coen Date: Fri, 9 Jun 2006 15:44:07 +0000 (+0000) Subject: Syntactic bug changed: t in "unfold t" must be a tactic_term, not a term X-Git-Tag: 0.4.95@7852~1350 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=29bde16fc56dc6aeab6bce0d34705b8c58b05bd6;p=helm.git Syntactic bug changed: t in "unfold t" must be a tactic_term, not a term --- diff --git a/components/grafite_parser/grafiteParser.ml b/components/grafite_parser/grafiteParser.ml index d4c89e0e3..0d9f450f9 100644 --- a/components/grafite_parser/grafiteParser.ml +++ b/components/grafite_parser/grafiteParser.ml @@ -72,7 +72,7 @@ EXTEND | IDENT "normalize" -> `Normalize | IDENT "reduce" -> `Reduce | IDENT "simplify" -> `Simpl - | IDENT "unfold"; t = OPT term -> `Unfold t + | IDENT "unfold"; t = OPT tactic_term -> `Unfold t | IDENT "whd" -> `Whd ] ]; sequent_pattern_spec: [