]> matita.cs.unibo.it Git - helm.git/commitdiff
Syntactic bug changed: t in "unfold t" must be a tactic_term, not a term
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Fri, 9 Jun 2006 15:44:07 +0000 (15:44 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Fri, 9 Jun 2006 15:44:07 +0000 (15:44 +0000)
helm/software/components/grafite_parser/grafiteParser.ml

index d4c89e0e33f6b93b06f14f73981c0bc238012748..0d9f450f9d8f9d1724c494bc7777d05f549c316c 100644 (file)
@@ -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: [