aboutsummaryrefslogtreecommitdiff
path: root/lib/ppstyle.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ppstyle.mli')
-rw-r--r--lib/ppstyle.mli11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/ppstyle.mli b/lib/ppstyle.mli
index b9422f7cf7..2690d3910a 100644
--- a/lib/ppstyle.mli
+++ b/lib/ppstyle.mli
@@ -14,28 +14,17 @@
(** This API is provisional and will likely be refined. *)
type t = Pp.pp_tag
-val to_format : t -> Format.tag
-val of_format : Format.tag -> t
-
(** Style tags *)
val make : ?style:Terminal.style -> string list -> t
(** Create a new tag with the given name. Each name must be unique. The optional
style is taken as the default one. *)
-val repr : t -> string list
-(** Gives back the original name of the style tag where each string has been
- concatenated and separated with a dot. *)
-
(** {5 Manipulating global styles} *)
val get_style : t -> Terminal.style option
-(** Get the style associated to a tag. *)
-
-val get_style_format : Format.tag -> Terminal.style option
(** Get the style associated to a tag from a format tag. *)
-
val set_style : t -> Terminal.style option -> unit
(** Set a style associated to a tag. *)