X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fcoerce.lisp;h=c9630f6c85d31daf6e09cdb2ceb39a988d195746;hb=104ee7ee303efa16e415f5e75df635ac54dba733;hp=dc97323ab36962f26599e52283462f9327690ab7;hpb=397b000303e15df61661d9726126ee99ee10d9c6;p=sbcl.git diff --git a/src/code/coerce.lisp b/src/code/coerce.lisp index dc97323..c9630f6 100644 --- a/src/code/coerce.lisp +++ b/src/code/coerce.lisp @@ -81,7 +81,7 @@ ;;; DEFTRANSFORMs, though. (declaim (inline coerce-to-list)) (declaim (inline coerce-to-simple-string coerce-to-bit-vector coerce-to-vector)) -(defun coerce-to-function (object) +(defun coerce-to-fun (object) ;; (Unlike the other COERCE-TO-FOOs, this one isn't inline, because ;; it's so big and because optimizing away the outer ETYPECASE ;; doesn't seem to buy us that much anyway.) @@ -270,7 +270,7 @@ ((csubtypep type (specifier-type 'character)) (character object)) ((csubtypep type (specifier-type 'function)) - (coerce-to-function object)) + (coerce-to-fun object)) ((numberp object) (let ((res (cond