Changeset 13876
- Timestamp:
- 02/23/12 10:33:06 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/clos.lisp
r13874 r13876 1791 1791 (apply #'make-instance-standard-method gf all-keys) 1792 1792 (apply #'make-instance (generic-function-method-class gf) all-keys)))) 1793 (std-add-method gf method) 1793 (if (eq (generic-function-method-class gf) +the-standard-method-class+) 1794 (std-add-method gf method) 1795 (add-method gf method)) 1794 1796 method))) 1795 1797 … … 2474 2476 :lambda-list ',lambda-list 2475 2477 :qualifiers ',qualifiers 2476 :specializers ,specializers-form2478 :specializers (canonicalize-specializers ,specializers-form) 2477 2479 ,@(if documentation `(:documentation ,documentation)) 2478 2480 :function (function ,method-function)
Note: See TracChangeset
for help on using the changeset viewer.