Unattached methods have slot generic-function set to nil

This commit is contained in:
jjgarcia 2006-03-10 12:59:40 +00:00
parent cf49eca290
commit 31c1b568c5
2 changed files with 4 additions and 1 deletions

View file

@ -116,6 +116,9 @@ ECL 0.9i
defined, so that the compiler no longer issues warnings when they are
referenced.
- The slot GENERIC-FUNCTION of a method is initially set to NIL instead of
left unbound.
* Documentation:
- The HTML manuals now use CSS for a more appealing look.

View file

@ -119,7 +119,7 @@
(eval-when (compile eval)
(defparameter +standard-method-slots+
'((generic-function :initarg :generic-function
'((generic-function :initarg :generic-function :initform nil
:accessor method-generic-function)
(lambda-list :initarg :lambda-list
:accessor method-lambda-list)