aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/elim.ml
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-10-27 12:47:19 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-10-27 12:47:19 +0000
commit1d6edcfa1b5969f082572d2b083b8160c2385bcd (patch)
tree86a18f61d88b83cb82a0008ccf34af6730f3a28d /tactics/elim.ml
parent820b306da4c1922e33181d32143418ca0ee6e9f2 (diff)
Bug Double Inversion
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4719 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/elim.ml')
-rw-r--r--tactics/elim.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/tactics/elim.ml b/tactics/elim.ml
index 4cb44c31e..e3235fc32 100644
--- a/tactics/elim.ml
+++ b/tactics/elim.ml
@@ -169,7 +169,8 @@ let induction_trailer abs_i abs_j bargs =
in
let ids = List.rev (ids_of_named_context hyps) in
(tclTHENSEQ
- [bring_hyps hyps; clear ids; simple_elimination (mkVar id)])
+ [bring_hyps hyps; tclTRY (clear ids);
+ simple_elimination (mkVar id)])
gls))
let double_ind h1 h2 gls =