aboutsummaryrefslogtreecommitdiff
path: root/src/tac2stdlib.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/tac2stdlib.ml')
-rw-r--r--src/tac2stdlib.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tac2stdlib.ml b/src/tac2stdlib.ml
index 89a8d98693..25d83c06fb 100644
--- a/src/tac2stdlib.ml
+++ b/src/tac2stdlib.ml
@@ -12,12 +12,14 @@ open Tac2expr
open Tac2core
open Proofview.Notations
+module Value = Tac2ffi
+
(** Standard tactics sharing their implementation with Ltac1 *)
let pname s = { mltac_plugin = "ltac2"; mltac_tactic = s }
let return x = Proofview.tclUNIT x
-let v_unit = Tac2core.Value.of_unit ()
+let v_unit = Value.of_unit ()
let lift tac = tac <*> return v_unit