aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/flags.ml
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-06-07 17:36:18 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-06-07 17:36:18 +0000
commit791e5812a9fb4978a3c2f6aba0de8658e74d1597 (patch)
tree3e68a37115a04c73460cdb475271e1e15599ba3c /lib/flags.ml
parent4d06337f9f21b62fa15763f8aee0471e78490150 (diff)
Colorization of coqtop messages is turned *off* by default
This bling-bling feature is interacting badly with - the documentation generation - the bench logs - compilation in an emacs buffer - ... As long as these points aren't solved, no coloring by default, but on the contrary an option to manually activate it: coqtop -color git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15427 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/flags.ml')
-rw-r--r--lib/flags.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index a48d05955..b4f6272ac 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -63,7 +63,7 @@ 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 true
+let term_color = ref false
let make_term_color b = term_color := b
let is_term_color () = !term_color