End.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Doug Wyatt, April 15, 1985 0:48:24 am PST
Russ Atkinson (RRA) June 19, 1985 1:54:16 pm PDT
DIRECTORY
MessageWindow USING [Append],
ViewerPrivate USING [EnableInput, ProcessEndOpsRegistry];
End: CEDAR PROGRAM
IMPORTS MessageWindow, ViewerPrivate
= BEGIN
ViewerPrivate.ProcessEndOpsRegistry[];
ViewerPrivate.EnableInput[]; -- start up the input machinery
MessageWindow.Append["Ready."];
END.