Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!rutgers!super.upenn.edu!linc.cis.upenn.edu!sherin From: sherin@linc.cis.upenn.edu (Steve Sherin) Newsgroups: comp.lang.lisp Subject: scoops bug Message-ID: <1231@super.upenn.edu.upenn.edu> Date: Mon, 25-May-87 02:07:04 EDT Article-I.D.: super.1231 Posted: Mon May 25 02:07:04 1987 Date-Received: Tue, 26-May-87 00:38:22 EDT Sender: root@super.upenn.edu.upenn.edu Reply-To: sherin@linc.cis.upenn.edu.UUCP (Steve Sherin) Distribution: world Organization: University of Pennsylvania Lines: 24 5/24/87--METHODS.SCM: In the define-methods macro > ,formal-list < was changed to > ',formal-list < to enable methods with parameters. >>Steve Sherin 5/25/87 In the file INSTANCE.SCM: (define-macro (%sc-compile-class class) ... ) has been changed to (define (%sc-compile-class class) (begin (%inherit-method-vars class) (eval (%make-template (%sc-name class) class) user-initial-environment))) This made sure classes always compile in the user-initial-environment. >>Steve Sherin