aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2018-09-18 15:22:12 +0200
committerEmilio Jesus Gallego Arias2018-10-06 14:32:23 +0200
commit53870b7f6890a593d1da93706f3d020a79d226e5 (patch)
tree0f6e1afa1ca58611e6a12596ef10c88359b8045e /tactics
parent371566f7619aed79aad55ffed6ee0920b961be6e (diff)
[api] Remove (most) 8.9 deprecated objects.
A few of them will be of help for future cleanups. We have spared the stuff in `Names` due to bad organization of this module following the split from `Term`, which really difficult things removing the constructors.
Diffstat (limited to 'tactics')
-rw-r--r--tactics/hints.ml5
-rw-r--r--tactics/hints.mli5
-rw-r--r--tactics/tacticals.ml4
-rw-r--r--tactics/tacticals.mli2
4 files changed, 0 insertions, 16 deletions
diff --git a/tactics/hints.ml b/tactics/hints.ml
index 90eafe88c4..af6d1c472f 100644
--- a/tactics/hints.ml
+++ b/tactics/hints.ml
@@ -1552,11 +1552,6 @@ let pr_hint_db_env env sigma db =
hov 2 (str"Cut: " ++ pp_hints_path (Hint_db.cut db)) ++ fnl () ++
content
-(* Deprecated in the mli *)
-let pr_hint_db db =
- let sigma, env = Pfedit.get_current_context () in
- pr_hint_db_env env sigma db
-
let pr_hint_db_by_name env sigma dbname =
try
let db = searchtable_map dbname in pr_hint_db_env env sigma db
diff --git a/tactics/hints.mli b/tactics/hints.mli
index d63efea27d..6db8feccd0 100644
--- a/tactics/hints.mli
+++ b/tactics/hints.mli
@@ -298,9 +298,4 @@ val pr_applicable_hint : unit -> Pp.t
val pr_hint_ref : env -> evar_map -> GlobRef.t -> Pp.t
val pr_hint_db_by_name : env -> evar_map -> hint_db_name -> Pp.t
val pr_hint_db_env : env -> evar_map -> Hint_db.t -> Pp.t
-val pr_hint_db : Hint_db.t -> Pp.t
-[@@ocaml.deprecated "please used pr_hint_db_env"]
val pr_hint : env -> evar_map -> hint -> Pp.t
-
-type nonrec hint_info = hint_info
-[@@ocaml.deprecated "Use [Typeclasses.hint_info]"]
diff --git a/tactics/tacticals.ml b/tactics/tacticals.ml
index 596feeec8b..f2cf915fe3 100644
--- a/tactics/tacticals.ml
+++ b/tactics/tacticals.ml
@@ -60,10 +60,6 @@ let tclIFTHENSELSE = Refiner.tclIFTHENSELSE
let tclIFTHENSVELSE = Refiner.tclIFTHENSVELSE
let tclIFTHENTRYELSEMUST = Refiner.tclIFTHENTRYELSEMUST
-(* Synonyms *)
-
-let tclTHENSEQ = tclTHENLIST
-
(************************************************************************)
(* Tacticals applying on hypotheses *)
(************************************************************************)
diff --git a/tactics/tacticals.mli b/tactics/tacticals.mli
index 1e66c2b0b1..cc15469d0e 100644
--- a/tactics/tacticals.mli
+++ b/tactics/tacticals.mli
@@ -23,8 +23,6 @@ val tclIDTAC_MESSAGE : Pp.t -> tactic
val tclORELSE0 : tactic -> tactic -> tactic
val tclORELSE : tactic -> tactic -> tactic
val tclTHEN : tactic -> tactic -> tactic
-val tclTHENSEQ : tactic list -> tactic
-[@@ocaml.deprecated "alias of Tacticals.tclTHENLIST"]
val tclTHENLIST : tactic list -> tactic
val tclTHEN_i : tactic -> (int -> tactic) -> tactic
val tclTHENFIRST : tactic -> tactic -> tactic