0.pre7.126:
[sbcl.git] / src / pcl / init.lisp
index 08fb92e..927eb47 100644 (file)
          (check-initargs-2-list initargs class legal error-p)))))
 
 (defun check-initargs-values (class call-list)
-  (let ((methods (mapcan #'(lambda (call)
-                            (if (consp call)
-                                (copy-list (compute-applicable-methods
-                                            (gdefinition (car call))
-                                            (cdr call)))
-                                (list call)))
+  (let ((methods (mapcan (lambda (call)
+                          (if (consp call)
+                              (copy-list (compute-applicable-methods
+                                          (gdefinition (car call))
+                                          (cdr call)))
+                              (list call)))
                         call-list))
        (legal (apply #'append (mapcar #'slot-definition-initargs
                                       (class-slots class)))))