IOUtilsExtras.mesa
This interface extends IOUtils to include two procedures advertised in IODoc.Tioga but not delivered (outside the continental IOPrintImpl, anyhow.)
Last edited by:
Swinehart, June 25, 1984 1:29:28 pm PDT
DIRECTORY IOUtils USING [ PFCodeProc, PFErrorProc ];
IOUtilsExtras: CEDAR DEFINITIONS =
BEGIN
Printing
The following procedures are used to change PutF's interpretation of the format string or its error handling. Note that PFProcs are bound to a stream instance, not to a stream class or globally.
SetDefaultPFCodeProc: PROC [char: CHAR, codeProc: IOUtils.PFCodeProc]
RETURNS [previous: IOUtils.PFCodeProc];
SetDefaultPFErrorProc: PROC [errorProc: IOUtils.PFErrorProc]
RETURNS [previous: IOUtils.PFErrorProc];
END.
CHANGE LOG
Created on June 25, 1984 1:28:15 pm PDT, by Swinehart
Include inadvertently omitted procedures., IOUtilsExtras