aboutsummaryrefslogtreecommitdiff
path: root/lib/flags.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-11-19 13:38:48 +0100
committerPierre-Marie Pédrot2018-11-19 13:38:48 +0100
commit6498a76f9755a9c82a04f0c4e088bc809eedede5 (patch)
tree2db09d01926223466adfa5864573fb27960a38ea /lib/flags.ml
parentd73fee2674999225ce59cc0a9f61dfafe99d7689 (diff)
parent177f7fa97dc7a2c4459f1a1047dec801ff0c65c0 (diff)
Merge PR #9001: [options] Remove deprecated option automatic introduction.
Diffstat (limited to 'lib/flags.ml')
-rw-r--r--lib/flags.ml4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index 582506f3a8..3aef5a7b2c 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -99,10 +99,6 @@ let verbosely f x = without_option quiet f x
let if_silent f x = if !quiet then f x
let if_verbose f x = if not !quiet then f x
-let auto_intros = ref true
-let make_auto_intros flag = auto_intros := flag
-let is_auto_intros () = !auto_intros
-
let polymorphic_inductive_cumulativity = ref false
let make_polymorphic_inductive_cumulativity b = polymorphic_inductive_cumulativity := b
let is_polymorphic_inductive_cumulativity () = !polymorphic_inductive_cumulativity