X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fearly-c.lisp;h=c0dba380715d21c42bfa08001cb7add1d24abf6e;hb=683874b497a99cd2c11b6c5d9b47e2785b1ede5f;hp=430918b49dba3ffdc825c7252ea517f1d18efbb0;hpb=b5703d98da9ebfd688c87e14862ab4e26dc94d14;p=sbcl.git diff --git a/src/compiler/early-c.lisp b/src/compiler/early-c.lisp index 430918b..c0dba38 100644 --- a/src/compiler/early-c.lisp +++ b/src/compiler/early-c.lisp @@ -30,11 +30,18 @@ "The exclusive upper bound on the number of multiple VALUES that you can return.") -;;; FIXME: Shouldn't SB!C::&MORE be in this list? (defconstant-eqx sb!xc:lambda-list-keywords - '(&optional &rest &key &aux &body &whole &allow-other-keys &environment) - #!+sb-doc + '(&allow-other-keys + &aux + &body + &environment + &key + &more + &optional + &rest + &whole) #'equal + #!+sb-doc "symbols which are magical in a lambda list") ;;;; cross-compiler-only versions of CL special variables, so that we @@ -118,7 +125,7 @@ note-name-defined)) (defun note-name-defined (name kind) ;; We do this BOUNDP check because this function can be called when - ;; not in a compilation unit (as when loading top-level forms). + ;; not in a compilation unit (as when loading top level forms). (when (boundp '*undefined-warnings*) (setq *undefined-warnings* (delete-if (lambda (x)