aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
Diffstat (limited to 'tactics')
-rw-r--r--tactics/extratactics.ml42
-rw-r--r--tactics/tacinterp.ml2
2 files changed, 2 insertions, 2 deletions
diff --git a/tactics/extratactics.ml4 b/tactics/extratactics.ml4
index a74bdad29b..db55f6434a 100644
--- a/tactics/extratactics.ml4
+++ b/tactics/extratactics.ml4
@@ -250,7 +250,7 @@ TACTIC EXTEND rewrite_star
let add_rewrite_hint name ort t lcsr =
let env = Global.env() and sigma = Evd.empty in
- let f c = Topconstr.constr_loc c, Constrintern.interp_constr sigma env c, ort, t in
+ let f c = Constrexpr_ops.constr_loc c, Constrintern.interp_constr sigma env c, ort, t in
add_rew_rules name (List.map f lcsr)
VERNAC COMMAND EXTEND HintRewrite
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml
index 462ffdc387..a0fd61c06d 100644
--- a/tactics/tacinterp.ml
+++ b/tactics/tacinterp.ml
@@ -34,7 +34,7 @@ open Refiner
open Tacmach
open Tactic_debug
open Constrexpr
-open Topconstr
+open Constrexpr_ops
open Term
open Termops
open Tacexpr