@@ -78,7 +78,6 @@ val eprintf : ('a, out_channel, unit) format -> 'a
78
78
val printf : ('a , out_channel , unit ) format -> 'a
79
79
val sprintf : ('a , unit , string ) format -> 'a
80
80
val fprintf : out_channel -> ('a , out_channel , unit ) format -> 'a
81
- val bprintf : Buffer .t -> ('a , out_channel , unit ) format -> 'a
82
81
83
82
(*
84
83
* List printing helpers.
@@ -159,7 +158,7 @@ val get_ellipsis_text : unit -> string
159
158
(*
160
159
* Redirecting formatter output.
161
160
*)
162
- val set_formatter_out_channel : Pervasives .out_channel -> unit
161
+ val set_formatter_out_channel : Stdlib .out_channel -> unit
163
162
val set_formatter_output_functions : (string -> int -> int -> unit ) -> (unit -> unit ) -> unit
164
163
val get_formatter_output_functions : unit -> (string -> int -> int -> unit ) * (unit -> unit )
165
164
@@ -170,19 +169,12 @@ val set_all_formatter_output_functions :
170
169
(int -> unit ) ->
171
170
unit
172
171
173
- val get_all_formatter_output_functions :
174
- unit ->
175
- (string -> int -> int -> unit ) *
176
- (unit -> unit ) *
177
- (unit -> unit ) *
178
- (int -> unit )
179
-
180
172
(*
181
173
* Multiple formatted output.
182
174
*)
183
175
type formatter = out_channel
184
176
185
- val formatter_of_out_channel : Pervasives .out_channel -> formatter
177
+ val formatter_of_out_channel : Stdlib .out_channel -> formatter
186
178
val std_formatter : formatter
187
179
val err_formatter : formatter
188
180
val str_formatter : formatter
@@ -199,7 +191,7 @@ val make_formatter : (string -> int -> int -> unit) -> (unit -> un
199
191
* [|PID1: string1|][|PID2: string2|]...
200
192
* (with consequetive non-NL strings from the same PID merged together).
201
193
*)
202
- val extra_formatting : string -> Pervasives .out_channel -> formatter -> unit
194
+ val extra_formatting : string -> Stdlib .out_channel -> formatter -> unit
203
195
204
196
val pp_open_hbox : formatter -> unit -> unit
205
197
val pp_open_vbox : formatter -> int -> unit
@@ -234,7 +226,7 @@ val pp_get_max_boxes : formatter -> unit -> int
234
226
val pp_over_max_boxes : formatter -> unit -> bool
235
227
val pp_set_ellipsis_text : formatter -> string -> unit
236
228
val pp_get_ellipsis_text : formatter -> unit -> string
237
- val pp_set_formatter_out_channel : formatter -> Pervasives .out_channel -> unit
229
+ val pp_set_formatter_out_channel : formatter -> Stdlib .out_channel -> unit
238
230
239
231
val pp_set_formatter_output_functions :
240
232
formatter -> (string -> int -> int -> unit ) -> (unit -> unit ) -> unit
@@ -250,14 +242,6 @@ val pp_set_all_formatter_output_functions :
250
242
(int -> unit ) ->
251
243
unit
252
244
253
- val pp_get_all_formatter_output_functions :
254
- formatter ->
255
- unit ->
256
- (string -> int -> int -> unit ) *
257
- (unit -> unit ) *
258
- (unit -> unit ) *
259
- (int -> unit )
260
-
261
245
(*
262
246
* Allow the use of the Format modules.
263
247
*)
0 commit comments