aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
Diffstat (limited to 'tactics')
-rw-r--r--tactics/auto.ml3
-rw-r--r--tactics/dhyp.ml2
2 files changed, 0 insertions, 5 deletions
diff --git a/tactics/auto.ml b/tactics/auto.ml
index 684f1dde2a..6ecbb09c41 100644
--- a/tactics/auto.ml
+++ b/tactics/auto.ml
@@ -449,9 +449,6 @@ let subst_autohint (_,subst,(local,name,hintlist as obj)) =
let classify_autohint ((local,name,hintlist) as obj) =
if local or hintlist = (AddTactic []) then Dispose else Substitute obj
-let export_autohint ((local,name,hintlist) as obj) =
- if local then None else Some obj
-
let (inAutoHint,_) =
declare_object {(default_object "AUTOHINT") with
cache_function = cache_autohint;
diff --git a/tactics/dhyp.ml b/tactics/dhyp.ml
index 0d4684e224..07086e05aa 100644
--- a/tactics/dhyp.ml
+++ b/tactics/dhyp.ml
@@ -207,8 +207,6 @@ let cache_dd (_,(_,na,dd)) =
let classify_dd (local,_,_ as o) =
if local then Dispose else Substitute o
-let export_dd (local,_,_ as x) = if local then None else Some x
-
let subst_dd (_,subst,(local,na,dd)) =
(local,na,
{ d_pat = subst_located_destructor_pattern subst dd.d_pat;