NodeStyleValidate.mesa
Copyright Ó 1986 by Xerox Corporation. All rights reserved.
Michael Plass, May 1, 1986 11:54:32 am PDT
NodeStyleValidate: CEDAR DEFINITIONS
~ BEGIN
DoLocked: PROC [action: PROC];
Executes action with lock on style loading
May be entered recursively
Use with caution
ValidateStyle: PROC [styleName: ATOM] RETURNS [changed: BOOLFALSE];
Checks for a new styleName—file binding, and reloads if necessary
Returns TRUE if the reload happened
Does not attempt to refresh screen
ValidateStyles: PROC RETURNS [changed: BOOLFALSE];
Checks for any new styleName—file bindings, and reloads as required
Returns TRUE if any reload happened
Does not attempt to refresh screen
END.