diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-01-26 15:26:12 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-01-26 15:26:12 -0500 |
commit | e0a8e775a4c1e12debb2a3fa458007340685dc9d (patch) | |
tree | ed45e466a53dc18a1c772e2bdaad2e5f7ac8025b /src/print.sig | |
parent | 485f8c00cc43334ba7bb429a830eb3b651ff92f6 (diff) |
Elaborating cons and decls
Diffstat (limited to 'src/print.sig')
-rw-r--r-- | src/print.sig | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/print.sig b/src/print.sig index 5bf3fcd8..39daf5d0 100644 --- a/src/print.sig +++ b/src/print.sig @@ -48,7 +48,11 @@ signature PRINT = sig val preface : string * PD.pp_desc -> unit val epreface : string * PD.pp_desc -> unit - val fprefaces : PD.PPS.stream -> (string * PD.pp_desc) list -> unit - val prefaces : (string * PD.pp_desc) list -> unit - val eprefaces : (string * PD.pp_desc) list -> unit + val fprefaces : PD.PPS.stream -> string -> (string * PD.pp_desc) list -> unit + val prefaces : string -> (string * PD.pp_desc) list -> unit + val eprefaces : string -> (string * PD.pp_desc) list -> unit + + val fprefaces' : PD.PPS.stream -> (string * PD.pp_desc) list -> unit + val prefaces' : (string * PD.pp_desc) list -> unit + val eprefaces' : (string * PD.pp_desc) list -> unit end |