aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/micromega
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-11-04 21:54:15 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-11-05 00:11:17 +0100
commit755dd6ce7140e849fcd44c1c4ce2e265776b2c6a (patch)
tree46a5205dffd0f789689093da231023cbc19a3eb1 /plugins/micromega
parent740928a69e22ac1c89c9258f54d56e273b32521c (diff)
Writing the raw introduction tactic in the new monad.
Diffstat (limited to 'plugins/micromega')
-rw-r--r--plugins/micromega/coq_micromega.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/micromega/coq_micromega.ml b/plugins/micromega/coq_micromega.ml
index a6d2cf75c..db22727fc 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) ;
]