aboutsummaryrefslogtreecommitdiffhomepage
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
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
-rw-r--r--lib/flags.ml2
-rw-r--r--toplevel/coqtop.ml2
2 files changed, 2 insertions, 2 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
diff --git a/toplevel/coqtop.ml b/toplevel/coqtop.ml
index 860ef2e61..6e5019adb 100644
--- a/toplevel/coqtop.ml
+++ b/toplevel/coqtop.ml
@@ -303,7 +303,7 @@ let parse_args arglist =
| "-filteropts" :: rem -> filter_opts := true; parse rem
- | "-nocolor" :: rem -> Flags.make_term_color false; parse rem
+ | "-color" :: rem -> Flags.make_term_color true; parse rem
| s :: rem ->
if !filter_opts then