aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorMaxime Dénès2017-10-27 18:18:30 +0200
committerMaxime Dénès2017-10-27 18:18:30 +0200
commitff4793c609d4fc2b868ff673ffaa48abf6d5fa03 (patch)
tree49a7a2cf4ebe5cd0066156a096434f3014f0fd06 /tactics
parent99b1f939f8ca56b328a159c27033052c6fcb9a81 (diff)
parentbf4112094feb1a705d8bdaea3fb0febc4ef3ff59 (diff)
Merge PR #6015: [general] Remove Econstr dependency from `intf`
Diffstat (limited to 'tactics')
-rw-r--r--tactics/tactics.ml2
-rw-r--r--tactics/tactics.mli1
2 files changed, 2 insertions, 1 deletions
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index e8a78d72d6..6ab6432394 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -839,7 +839,7 @@ let e_change_in_hyp redfun (id,where) =
(convert_hyp c)
end
-type change_arg = Pattern.patvar_map -> evar_map -> evar_map * EConstr.constr
+type change_arg = Ltac_pretype.patvar_map -> evar_map -> evar_map * EConstr.constr
let make_change_arg c pats sigma = (sigma, replace_vars (Id.Map.bindings pats) c)
diff --git a/tactics/tactics.mli b/tactics/tactics.mli
index e07d514cd0..32923ea811 100644
--- a/tactics/tactics.mli
+++ b/tactics/tactics.mli
@@ -21,6 +21,7 @@ open Unification
open Misctypes
open Tactypes
open Locus
+open Ltac_pretype
(** Main tactics defined in ML. This file is huge and should probably be split
in more reasonable units at some point. Because of its size and age, the