blob: 2d2a566bf0de7b3dc4013a49e3104a767a874b5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(* $Id$ *)
(* Global options of the system. *)
val batch_mode : bool ref
val debug : bool ref
val print_emacs : bool ref
val emacs_str : string -> string
val make_silent : bool -> unit
val is_silent : unit -> bool
val silently : ('a -> 'b) -> 'a -> 'b
|