aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/tacticals.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tactics/tacticals.ml')
-rw-r--r--tactics/tacticals.ml6
1 files changed, 2 insertions, 4 deletions
diff --git a/tactics/tacticals.ml b/tactics/tacticals.ml
index 294a13c6d..c8f687698 100644
--- a/tactics/tacticals.ml
+++ b/tactics/tacticals.ml
@@ -48,8 +48,6 @@ let dyn_tclIDTAC = function [] -> tclIDTAC | _ -> anomaly "tclIDTAC"
let dyn_tclFAIL = function [] -> tclFAIL | _ -> anomaly "tclFAIL"
-let tclTHEN_i1 tac1 tac2 = tclTHEN_i tac1 tac2 1
-
(* apply a tactic to the nth element of the signature *)
let tclNTH_HYP m (tac : constr->tactic) gl =
@@ -344,14 +342,14 @@ let general_elim_then_using
largs = List.map (clenv_instance_term ce) largs;
pred = clenv_instance_term ce hd }
in
- tac ba gl
+ tac ba gl
in
let elimclause' =
match predicate with
| None -> elimclause'
| Some p -> clenv_assign pmv p elimclause'
in
- elim_res_pf_THEN_i kONT elimclause' after_tac 1 gl
+ elim_res_pf_THEN_i kONT elimclause' after_tac gl
let elimination_then_using tac predicate (indbindings,elimbindings) c gl =