aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2000-10-03 18:12:46 +0000
committerherbelin2000-10-03 18:12:46 +0000
commit265365329632320e3880e792712c8223c1cb1316 (patch)
treea5d64f30cafb15c3214911df736d218580e363f9
parent30ea3a6b5d939126d8e8905ff49764ed185525cc (diff)
Ajout castedopenconstrarg; Renommage tactique Let en LetTac
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@640 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--parsing/g_tactic.ml45
1 files changed, 4 insertions, 1 deletions
diff --git a/parsing/g_tactic.ml4 b/parsing/g_tactic.ml4
index d0e3a8a76f..eb4bc02e4b 100644
--- a/parsing/g_tactic.ml4
+++ b/parsing/g_tactic.ml4
@@ -30,6 +30,9 @@ GEXTEND Gram
constrarg:
[ [ c = Constr.constr -> <:ast< (COMMAND $c) >> ] ]
;
+ castedopenconstrarg:
+ [ [ c = Constr.constr -> <:ast< (CASTEDOPENCOMMAND $c) >> ] ]
+ ;
lconstrarg:
[ [ c = Constr.lconstr -> <:ast< (COMMAND $c) >> ] ]
;
@@ -369,7 +372,7 @@ GEXTEND Gram
<:ast< (Generalize ($LIST $lc)) >>
| IDENT "Generalize"; IDENT "Dependent"; c = constrarg ->
<:ast< (GeneralizeDep $c) >>
- | IDENT "Let"; s = identarg; ":="; c = constrarg; "in";
+ | IDENT "LetTac"; s = identarg; ":="; c = constrarg; "in";
l = ne_pattern_hyp_list ->
<:ast< (LetTac $s $c (LETPATTERNS ($LIST $l))) >>
| IDENT "LApply"; c = constrarg -> <:ast< (CutAndApply $c) >>