TEditDisplay.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Edited by Paxton on May 21, 1982 8:50 am
Doug Wyatt, March 3, 1985 1:05:11 pm PST
DIRECTORY
TEditDocument USING [TEditDocumentData],
TextNode USING [Location, Ref, Span],
ViewerClasses USING [Viewer];
TEditDisplay: CEDAR DEFINITIONS
= BEGIN
EstablishLine: PROC [tdd: TEditDocument.TEditDocumentData,
newLine: TextNode.Location, position: INTEGER ← 0];
InvalidateSpan: PROC [viewer: ViewerClasses.Viewer, span: TextNode.Span,
errorFlag: BOOLTRUE, movingOut, unnesting: BOOLFALSE];
InvalidateChildren: PROC [viewer: ViewerClasses.Viewer, node: TextNode.Ref];
InvalidateBranch: PROC [viewer: ViewerClasses.Viewer, node: TextNode.Ref];
END.