<<-- TEditCompile.mesa; Edited by McGregor on August 4, 1982 3:30 pm>> TEditCompile: CEDAR DEFINITIONS = BEGIN <<-- The editor can format lines up to (not counting leading):>> maxLineHeight: INTEGER = 32; -- should be multiple of 4 <<-- pixels in vertical size, 3/4 of which is above the baseline.>> maxLineAscent: INTEGER = (maxLineHeight*3)/4; maxLineDescent: INTEGER = maxLineHeight/4; <<-- The editor can format lines up to:>> bitmapWPL: CARDINAL = 1024/16; -- should be multiple of 16 <<-- *16 pixels in the horizontal dimension, not counting margins.>> <<-- The editor can format lines with as many as:>> maxCharsPerLine: INTEGER = 256; <<-- characters in a single line.>> <<-- The editor allocates line table space for at least:>> minAvgLineLeading: INTEGER = 8; <<-- over the document.>> END.