aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/elim.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-05-16 20:57:34 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-05-16 21:17:25 +0200
commit9ae9ac00b6882a9918eea3cb7d809424695d37ff (patch)
treeee44e2e88516143ce366e7b4ec4be3acc96bc8b1 /tactics/elim.ml
parent12f4c8ed277fa8368cab2e99f173339a64bcef3d (diff)
Put the "exact" family of tactic in the monad.
Diffstat (limited to 'tactics/elim.ml')
-rw-r--r--tactics/elim.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/elim.ml b/tactics/elim.ml
index 33eb80c28..d59c2fba4 100644
--- a/tactics/elim.ml
+++ b/tactics/elim.ml
@@ -84,7 +84,7 @@ let general_decompose recognizer c =
(onLastHypId
(ifOnHyp recognizer (general_decompose_aux recognizer)
(fun id -> clear [id])));
- Proofview.V82.tactic (exact_no_check c) ]
+ exact_no_check c ]
end }
let head_in indl t gl =