aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/flags.ml
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-11-15 19:13:11 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-11-15 19:15:14 +0100
commit40cb5731ddfcff2a791033e84cc083c119270fc1 (patch)
tree26533dc07af894118366d3f04e550ba8486d561e /lib/flags.ml
parent8a03208daca697ec9c2414d0cf5231150ea539e5 (diff)
Reworking the -color flag of coqtop.
Diffstat (limited to 'lib/flags.ml')
-rw-r--r--lib/flags.ml5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index 993ebaa70..f95c31d9b 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -141,11 +141,6 @@ let verbosely f x = without_option silent f x
let if_silent f x = if !silent then f x
let if_verbose f x = if not !silent then f x
-(* Use terminal color *)
-let term_color = ref false
-let make_term_color b = term_color := b
-let is_term_color () = !term_color
-
let auto_intros = ref true
let make_auto_intros flag = auto_intros := flag
let is_auto_intros () = version_strictly_greater V8_2 && !auto_intros