blob: e0cebb1ebb51039d085184ff5df6822180b31d6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
(* $Id$ *)
let batch_mode = ref false
let debug = ref false
let print_emacs = ref false
let emacs_str s = if !print_emacs then s else ""
(* Silent *)
let silent = ref false
let make_silent flag = silent := flag; ()
let is_silent () = !silent
let silently f x =
let oldsilent = !silent in
try
silent := true;
let rslt = f x in
silent := oldsilent;
rslt
with e -> begin
silent := oldsilent; raise e
end
(* The number of printed hypothesis in a goal *)
let print_hyps_limit = ref (None : int option)
let set_print_hyps_limit n = print_hyps_limit := Some n
let unset_print_hyps_limit () = print_hyps_limit := None
let print_hyps_limit () = !print_hyps_limit
|