FeedbackSignals.mesa
Copyright Ó 1988, 1990 by Xerox Corporation. All rights reserved.
Bier, August 23, 1989 10:21:11 am PDT
Last tweaked by Mike Spreitzer on May 1, 1990 9:25:35 am PDT
Contents: A useful signal.
DIRECTORY Rope;
FeedbackSignals: CEDAR DEFINITIONS = BEGIN
Problem: READONLY SIGNAL [msg: Rope.ROPE];
This SIGNAL can be used by applications that wish to pass a rope up to the Debugger. If lots of applications use this signal, than it will be a useful signal to catch for applications that wish to protect their users from the debugger. In this case, the msg can be printed in a suitable output area (by calling one of the Feedback routines for instance).
END.