aboutsummaryrefslogtreecommitdiff
path: root/lib/options.ml
diff options
context:
space:
mode:
Diffstat (limited to 'lib/options.ml')
-rw-r--r--lib/options.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/options.ml b/lib/options.ml
index 26869e7adc..fdfec98d08 100644
--- a/lib/options.ml
+++ b/lib/options.ml
@@ -15,7 +15,7 @@ let emacs_str s = if !print_emacs then s else ""
let silent = ref false
let make_silent flag = silent := flag; ()
let is_silent () = !silent
-let verbose () = not !silent
+let is_verbose () = not !silent
let silently f x =
let oldsilent = !silent in