TEditDocumentRope.mesa
Copyright © 1985, 1986 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, September 2, 1986 2:44:35 pm PDT
DIRECTORY
Rope USING [ROPE],
TextNode USING [Node];
TEditDocumentRope: CEDAR DEFINITIONS
= BEGIN
Create: PROC [doc: TextNode.Node] 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.