X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fsetf-funs.lisp;h=16c0878fac9f4e46c5de2358df84b371ecc26334;hb=63cef087068afc157283c0a05ae1f16b962303aa;hp=f26996be98362dc672034ab4a6298dac8f887380;hpb=d147d512602d761a2dcdfded506dd1a8f9a140dc;p=sbcl.git diff --git a/src/code/setf-funs.lisp b/src/code/setf-funs.lisp index f26996b..16c0878 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))))