X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdefboot.lisp;h=e04a89dc95e7c819941ff8ee20f4be440a6063d8;hb=83659744f9caa97aa83eb562d872b1c0127403c0;hp=d83ca1a00fd8893aaf92563eb0b01e6ece7acb23;hpb=df871446529da0e83d670f35a9566c11d814be32;p=sbcl.git diff --git a/src/code/defboot.lisp b/src/code/defboot.lisp index d83ca1a..e04a89d 100644 --- a/src/code/defboot.lisp +++ b/src/code/defboot.lisp @@ -232,11 +232,8 @@ evaluated as a PROGN." (sb!c::note-name-defined name :function) (when doc - (setf (fdocumentation name 'function) doc) - #!+sb-eval - (when (typep def 'sb!eval:interpreted-function) - (setf (sb!eval:interpreted-function-documentation def) - doc))) + (setf (%fun-doc def) doc)) + name) ;;;; DEFVAR and DEFPARAMETER @@ -331,7 +328,7 @@ evaluated as a PROGN." ;;; ASAP, at the cost of being unable to use the standard ;;; destructuring mechanisms. (defmacro-mundanely dotimes ((var count &optional (result nil)) &body body) - (cond ((numberp count) + (cond ((integerp count) `(do ((,var 0 (1+ ,var))) ((>= ,var ,count) ,result) (declare (type unsigned-byte ,var))