aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGaëtan Gilbert2018-10-30 13:06:42 +0100
committerGaëtan Gilbert2018-10-30 13:06:42 +0100
commit0a007ed37f34c9ae30ed860e2c3f237a616c89e6 (patch)
tree86c828148e8fb36a100709ced04036d4c723801b /src
parent1b5b82953cacc5b9c3b04e242c059d7ee488fd8c (diff)
Adapt to coq/coq#8844 (move abstract out of tactics.ml)
Diffstat (limited to 'src')
-rw-r--r--src/tac2core.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tac2core.ml b/src/tac2core.ml
index 8ee239f803..7384652216 100644
--- a/src/tac2core.ml
+++ b/src/tac2core.ml
@@ -781,7 +781,7 @@ let () = define1 "progress" closure begin fun f ->
end
let () = define2 "abstract" (option ident) closure begin fun id f ->
- Tactics.tclABSTRACT id (Proofview.tclIGNORE (thaw f)) >>= fun () ->
+ Abstract.tclABSTRACT id (Proofview.tclIGNORE (thaw f)) >>= fun () ->
return v_unit
end