X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcompiler%2Fgeneric%2Finterr.lisp;h=b9814bbf5c7f67afbc7c88891f3cee9e5bc734ca;hb=5edd74f6911093805a009a152b32216b3dba59f7;hp=b48d8362dcd58700f2b3275243e26c5ec015dbc3;hpb=b6aa15328871678a3475e82c150b251dffb49ba1;p=sbcl.git diff --git a/src/compiler/generic/interr.lisp b/src/compiler/generic/interr.lisp index b48d836..b9814bb 100644 --- a/src/compiler/generic/interr.lisp +++ b/src/compiler/generic/interr.lisp @@ -24,8 +24,8 @@ ;;; functions as closures instead of DEFUNs? (eval-when (:compile-toplevel :execute) (def!macro define-internal-errors (&rest errors) - (let ((info (mapcar #'(lambda (x) - (if x + (let ((info (mapcar (lambda (x) + (if x (cons (symbolicate (first x) "-ERROR") (second x)) '(nil . "unused"))) @@ -38,7 +38,7 @@ (define-internal-errors (unknown "unknown system lossage") - (object-not-function + (object-not-fun "Object is not of type FUNCTION.") (object-not-list "Object is not of type LIST.") @@ -87,11 +87,11 @@ ;; FIXME: Isn't this used for calls to unbound (SETF FOO) too? If so, revise ;; the name. "An attempt was made to use an undefined FDEFINITION.") - (object-not-coerceable-to-function + (object-not-coerceable-to-fun "Object is not coerceable to type FUNCTION.") - (invalid-argument-count + (invalid-arg-count "invalid argument count") - (bogus-argument-to-values-list + (bogus-arg-to-values-list "bogus argument to VALUES-LIST") (unbound-symbol "An attempt was made to use an undefined SYMBOL-VALUE.") @@ -108,9 +108,9 @@ "division by zero") (object-not-type "Object is of the wrong type.") - (odd-key-arguments + (odd-key-args "odd number of &KEY arguments") - (unknown-key-argument + (unknown-key-arg "unknown &KEY argument") nil nil @@ -175,7 +175,7 @@ "Object is not a INSTANCE.") (object-not-base-char "Object is not of type BASE-CHAR.") - (nil-function-returned + (nil-fun-returned "A function with declared result type NIL returned.") (layout-invalid "Object layout is invalid. (indicates obsolete instance)")