X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fsetf-funs.lisp;h=3e18ea60b37c19546dc98bee9461229d5aaac713;hb=2db3b6b4cb740d5b6512459c223859f747807b09;hp=4073fc89f0876b692d0243840053da83399fdc75;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/code/setf-funs.lisp b/src/code/setf-funs.lisp index 4073fc8..3e18ea6 100644 --- a/src/code/setf-funs.lisp +++ b/src/code/setf-funs.lisp @@ -21,10 +21,10 @@ (values-specifier-type (third type))))) (arglist (make-gensym-list (1+ (length args))))) (cond - ((null (intersection args lambda-list-keywords)) + ((null (intersection args sb!xc:lambda-list-keywords)) `(defun (setf ,name) ,arglist - (declare ,@(mapcar #'(lambda (arg type) - `(type ,type ,arg)) + (declare ,@(mapcar (lambda (arg type) + `(type ,type ,arg)) arglist (cons res args))) (setf (,name ,@(rest arglist)) ,(first arglist)))) @@ -43,12 +43,12 @@ (info :setf :expander sym)) (not (member sym ignore))) (let ((type (type-specifier (info :function :type sym)))) - (assert (consp type)) + (aver (consp type)) #!-sb-fluid (res `(declaim (inline (setf ,sym)))) (res (compute-one-setter sym type)))))) `(progn ,@(res)))) -); eval-when (compile eval) +) ; EVAL-WHEN (define-setters ("COMMON-LISP") ;; Semantically silly...