diff options
Diffstat (limited to 'stdlib/format.mli')
-rw-r--r-- | stdlib/format.mli | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/stdlib/format.mli b/stdlib/format.mli index 4600b43ab..2816fc812 100644 --- a/stdlib/format.mli +++ b/stdlib/format.mli @@ -303,6 +303,9 @@ val set_mark_tags : bool -> unit;; ``verbatim'' material or richer decorated output depending on the treatment of tags. Default behavior of the pretty printer is to print tags and markers of tags. *) +val get_print_tags : unit -> bool;; +val get_mark_tags : unit -> bool;; +(** Return the current status of tag printing and marking. *) (** {6 Ellipsis} *) @@ -471,6 +474,8 @@ val pp_set_tab : formatter -> unit -> unit;; val pp_print_tab : formatter -> unit -> unit;; val pp_set_print_tags : formatter -> bool -> unit;; val pp_set_mark_tags : formatter -> bool -> unit;; +val pp_get_print_tags : formatter -> unit -> bool;; +val pp_get_mark_tags : formatter -> unit -> bool;; val pp_set_margin : formatter -> int -> unit;; val pp_get_margin : formatter -> unit -> int;; val pp_set_max_indent : formatter -> int -> unit;; |