aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/micromega/coq_micromega.ml2
-rw-r--r--plugins/omega/coq_omega.ml4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/micromega/coq_micromega.ml b/plugins/micromega/coq_micromega.ml
index a6d2cf75c4..db22727fc4 100644
--- a/plugins/micromega/coq_micromega.ml
+++ b/plugins/micromega/coq_micromega.ml
@@ -1403,7 +1403,7 @@ let micromega_order_change spec cert cert_typ env ff : Tacmach.tactic =
]
(Tacmach.pf_concl gl)) gl);
Tactics.generalize env ;
- Tacticals.tclTHENSEQ (List.map Tactics.introduction ids) ;
+ Tacticals.tclTHENSEQ (List.map (fun id -> Proofview.V82.of_tactic (Tactics.introduction id)) ids) ;
]
diff --git a/plugins/omega/coq_omega.ml b/plugins/omega/coq_omega.ml
index 847fda8cd6..b35ef17723 100644
--- a/plugins/omega/coq_omega.ml
+++ b/plugins/omega/coq_omega.ml
@@ -1675,7 +1675,7 @@ let onClearedName id tac =
(Proofview.V82.tactic (tclTRY (clear [id])))
(Proofview.Goal.nf_enter begin fun gl ->
let id = Tacmach.New.of_old (fresh_id [] id) gl in
- Tacticals.New.tclTHEN (Proofview.V82.tactic (introduction id)) (tac id)
+ Tacticals.New.tclTHEN (introduction id) (tac id)
end)
let onClearedName2 id tac =
@@ -1684,7 +1684,7 @@ let onClearedName2 id tac =
(Proofview.Goal.nf_enter begin fun gl ->
let id1 = Tacmach.New.of_old (fresh_id [] (add_suffix id "_left")) gl in
let id2 = Tacmach.New.of_old (fresh_id [] (add_suffix id "_right")) gl in
- Tacticals.New.tclTHENLIST [ Proofview.V82.tactic (introduction id1); Proofview.V82.tactic (introduction id2); tac id1 id2 ]
+ Tacticals.New.tclTHENLIST [ introduction id1; introduction id2; tac id1 id2 ]
end)
let destructure_hyps =