TSJaMPageBuilder.mesa
Michael Plass, November 16, 1982 3:51 pm
Last Edited by: Beach, May 24, 1983 9:14 am
DIRECTORY TSObject, NodeStyle, TSOutput, Rope;
TSJaMPageBuilder: DEFINITIONS =
BEGIN
RunPageBuilder: PROCEDURE [
galley: TSObject.ItemList,
style: NodeStyle.Ref,
output: TSOutput.Handle,
abortCheckProc: AbortCheckProc ← NIL,
documentName: Rope.ROPENIL -- only a hint
]
RETURNS [aborted: BOOLEAN];
AbortCheckProc: TYPE = PROCEDURE RETURNS [BOOLEAN];
When this is returns true, the typesetter will stop by the end of the current page
END.
Michael Plass, November 2, 1982 2:42 pm. Tioga formatted.
Michael Plass, November 16, 1982 3:50 pm. Pass style instead of style name.