aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/tactics.ml
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-11-06 11:55:42 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-11-06 11:55:42 +0000
commitd9b82a2d4a9e310f9f0cd907e71bc6a57bf03efd (patch)
treea2a5b25d1c5191acabebf00630471ba623bb246a /tactics/tactics.ml
parent4e1de854561f20e2069df271ed6f240fc521e680 (diff)
Fixing tactic remember not correctly checking preservation of typing
in hypotheses. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14638 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/tactics.ml')
-rw-r--r--tactics/tactics.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index 4022af6d9..cddb7a2b2 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -1768,8 +1768,8 @@ let letin_tac_gen with_eq name (sigmac,c) test ty occs gl =
tclTHENLIST
[ convert_concl_no_check newcl DEFAULTcast;
intro_gen dloc (IntroMustBe id) lastlhyp true false;
- eq_tac;
- tclMAP convert_hyp_no_check depdecls ] gl
+ tclMAP convert_hyp_no_check depdecls;
+ eq_tac ] gl
let make_eq_test c = (make_eq_test c,fun _ -> c)