mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-03-15 17:30:37 -07:00
Unattached methods have slot generic-function set to nil
This commit is contained in:
parent
cf49eca290
commit
31c1b568c5
2 changed files with 4 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue