X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fearly-setf.lisp;h=ff87f9fbfcf2f2970a396f9acc6e1f6ae6f1ba52;hb=4f64f131a7bca59d0dc8be9e74d05a7645f27e67;hp=d9d808174532475e23dc96e748aa920879a455c7;hpb=099d6dd1f6a5ac2ffec5c14d07a4b905322ef968;p=sbcl.git diff --git a/src/code/early-setf.lisp b/src/code/early-setf.lisp index d9d8081..ff87f9f 100644 --- a/src/code/early-setf.lisp +++ b/src/code/early-setf.lisp @@ -326,7 +326,7 @@ GET-SETF-EXPANSION directly." ;;;; DEFSETF (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute) - ;;; Assign setf macro information for NAME, making all appropriate checks. + ;;; Assign SETF macro information for NAME, making all appropriate checks. (defun assign-setf-macro (name expander inverse doc) (cond ((gethash name sb!c:*setf-assumed-fboundp*) (warn @@ -341,7 +341,7 @@ GET-SETF-EXPANSION directly." (warn "defining SETF macro for DEFSTRUCT slot ~ accessor; redefining as a normal function: ~S" name) - (sb!c::proclaim-as-function-name name)) + (proclaim-as-function-name name)) ((not (eq (symbol-package name) (symbol-package 'aref))) (style-warn "defining setf macro for ~S when ~S is fbound" name `(setf ,name))))