PhoneList.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Eric Nickell, October 11, 1985 10:12:34 am PDT
DIRECTORY
Rope;
PhoneList: CEDAR DEFINITIONS
~ BEGIN
LookupName: PROC [name: Rope.ROPE] RETURNS [found: BOOL, line: LIST OF Rope.ROPE];
Looks up the last name using the current set of files defined in the User profile.
CorrectionToName: PROC [name: Rope.ROPE] RETURNS [possibilities: LIST OF Rope.ROPENIL];
Gives corrected names that MIGHT be in the phone list files defined in the User Profile. Will RETURN NIL if the spelling tool package is not loaded.
END.