aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Melquiond2016-11-22 17:51:32 +0100
committerGuillaume Melquiond2017-06-14 07:31:22 +0200
commit5e93f1e95853c3614df813845b94051a45f1a749 (patch)
tree06bef8d0dbe5d0d096764a8d70b8c890df2fda31
parent376da97be60957b25e59afb5791fae665127b17b (diff)
Deprecate options that were introduced for compatibility with 8.2.
-rw-r--r--plugins/ltac/tauto.ml2
-rw-r--r--pretyping/classops.ml2
-rw-r--r--pretyping/unification.ml2
-rw-r--r--tactics/equality.ml2
-rw-r--r--tactics/tactics.ml2
-rw-r--r--vernac/vernacentries.ml2
6 files changed, 6 insertions, 6 deletions
diff --git a/plugins/ltac/tauto.ml b/plugins/ltac/tauto.ml
index c6cc955b0f..2a8ed72387 100644
--- a/plugins/ltac/tauto.ml
+++ b/plugins/ltac/tauto.ml
@@ -79,7 +79,7 @@ let _ =
let _ =
declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "unfolding of iff in intuition";
optkey = ["Intuition";"Iff";"Unfolding"];
optread = (fun () -> !iff_unfolding);
diff --git a/pretyping/classops.ml b/pretyping/classops.ml
index 627a9c9cc7..8d87f6e99c 100644
--- a/pretyping/classops.ml
+++ b/pretyping/classops.ml
@@ -428,7 +428,7 @@ let automatically_import_coercions = ref false
open Goptions
let _ =
declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "automatic import of coercions";
optkey = ["Automatic";"Coercions";"Import"];
optread = (fun () -> !automatically_import_coercions);
diff --git a/pretyping/unification.ml b/pretyping/unification.ml
index b4964c1f36..67c8b07e78 100644
--- a/pretyping/unification.ml
+++ b/pretyping/unification.ml
@@ -254,7 +254,7 @@ open Goptions
let _ =
declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "pattern-unification for existential variables in tactics";
optkey = ["Tactic";"Pattern";"Unification"];
optread = (fun () -> !global_pattern_unification_flag);
diff --git a/tactics/equality.ml b/tactics/equality.ml
index d7ec527629..d810e862af 100644
--- a/tactics/equality.ml
+++ b/tactics/equality.ml
@@ -55,7 +55,7 @@ let discr_do_intro () = !discriminate_introduction
open Goptions
let _ =
declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "automatic introduction of hypotheses by discriminate";
optkey = ["Discriminate";"Introduction"];
optread = (fun () -> !discriminate_introduction);
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index 96e7be763d..dbb613c40e 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -67,7 +67,7 @@ let use_dependent_propositions_elimination () =
let _ =
declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "dependent-propositions-elimination tactic";
optkey = ["Dependent";"Propositions";"Elimination"];
optread = (fun () -> !dependent_propositions_elimination) ;
diff --git a/vernac/vernacentries.ml b/vernac/vernacentries.ml
index 9978848ff3..ba1da655a8 100644
--- a/vernac/vernacentries.ml
+++ b/vernac/vernacentries.ml
@@ -1298,7 +1298,7 @@ let _ =
let _ =
declare_bool_option
- { optdepr = false;
+ { optdepr = true; (* remove in 8.8 *)
optname = "automatic introduction of variables";
optkey = ["Automatic";"Introduction"];
optread = Flags.is_auto_intros;