TEditDocumentRope.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
written by Bill Paxton. March 31, 1983
last written by Paxton. March 31, 1983 9:22 am
Doug Wyatt, March 3, 1985 1:03:32 pm PST
DIRECTORY
Rope USING [ROPE],
TextNode USING [Ref];
TEditDocumentRope: CEDAR DEFINITIONS
= BEGIN
Create: PROC [doc: TextNode.Ref] RETURNS [Rope.ROPE];
This lets you read characters from an arbitrary Tioga doc as if it were a rope.
Returns CR's between nodes.
Use with caution. doc should NOT change during the lifetime of this rope.
END.