diff options
author | Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr> | 2017-12-07 22:27:19 +0100 |
---|---|---|
committer | Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr> | 2017-12-11 13:34:55 +0100 |
commit | ac2b757a7835672ba494bf42244b5d393e8db089 (patch) | |
tree | db649017592a9b78d70c9abd33e490b758f75fc4 /lib | |
parent | 84a655b14bfc886447da9abc5cf141ab87ae4bd7 (diff) |
Remove deprecated option Tactic Compat Context.
And some code simplification.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/flags.ml | 1 | ||||
-rw-r--r-- | lib/flags.mli | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/lib/flags.ml b/lib/flags.ml index ddc8f8482..5079b4b01 100644 --- a/lib/flags.ml +++ b/lib/flags.ml @@ -200,7 +200,6 @@ let native_compiler = ref false (* Print the mod uid associated to a vo file by the native compiler *) let print_mod_uid = ref false -let tactic_context_compat = ref false let profile_ltac = ref false let profile_ltac_cutoff = ref 2.0 diff --git a/lib/flags.mli b/lib/flags.mli index c4afb8318..8825390e6 100644 --- a/lib/flags.mli +++ b/lib/flags.mli @@ -160,10 +160,6 @@ val native_compiler : bool ref (** Print the mod uid associated to a vo file by the native compiler *) val print_mod_uid : bool ref -val tactic_context_compat : bool ref -(** Set to [true] to trigger the compatibility bugged context matching (old - context vs. appcontext) is set. *) - val profile_ltac : bool ref val profile_ltac_cutoff : float ref |