Browse Source

Set color on by default

 + Related to issue #20.
Leo 9 years ago
parent
commit
2264d38316
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/const.ml

+ 1 - 1
src/const.ml

@@ -75,7 +75,7 @@ let verbosity =
        |> Int.of_string);;
 (* Use do not use colors, 0 -> false, anything -> true *)
 let no_color =
-  ref (get_var ~default:(lazy "0") (lazy "OC_COLOR")
+  ref (get_var ~default:(lazy "1") (lazy "OC_COLOR")
        |> Lazy.force
        |> (function "0" -> false | _ -> true)
       )