aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2016-11-22 17:54:14 +0100
committerGravatar Guillaume Melquiond <guillaume.melquiond@inria.fr>2017-06-14 07:33:11 +0200
commit180b3739bb6601ff9aaf951e4b87e0bb45341b77 (patch)
tree26ec304df95214c6da437764393de25337d1e874
parent5e93f1e95853c3614df813845b94051a45f1a749 (diff)
Deprecate options that were introduced for compatibility with 8.4.
-rw-r--r--engine/namegen.ml2
-rw-r--r--tactics/equality.ml2
-rw-r--r--tactics/tactics.ml2
3 files changed, 3 insertions, 3 deletions
diff --git a/engine/namegen.ml b/engine/namegen.ml
index e635dc163..783085654 100644
--- a/engine/namegen.ml
+++ b/engine/namegen.ml
@@ -417,7 +417,7 @@ let use_h_based_elimination_names () = !h_based_elimination_names
open Goptions
let _ = declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "use of \"H\"-based proposition names in elimination tactics";
optkey = ["Standard";"Proposition";"Elimination";"Names"];
optread = (fun () -> !h_based_elimination_names);
diff --git a/tactics/equality.ml b/tactics/equality.ml
index d810e862a..6e56dc48e 100644
--- a/tactics/equality.ml
+++ b/tactics/equality.ml
@@ -67,7 +67,7 @@ let use_injection_pattern_l2r_order () = !injection_pattern_l2r_order
let _ =
declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "injection left-to-right pattern order and clear by default when with introduction pattern";
optkey = ["Injection";"L2R";"Pattern";"Order"];
optread = (fun () -> !injection_pattern_l2r_order) ;
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index dbb613c40..f56a913cb 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -144,7 +144,7 @@ let use_bracketing_last_or_and_intro_pattern () =
let _ =
declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "bracketing last or-and introduction pattern";
optkey = ["Bracketing";"Last";"Introduction";"Pattern"];
optread = (fun () -> !bracketing_last_or_and_intro_pattern);