* Use VALID-FUNCTION-NAME-P to check if we should store the docstring:
previously we stored docstrings for anonymous functions under names
like (LAMBDA (X)) -- Not Good.
new-value))
(function
(let ((name (%fun-name x)))
- (when (and name (typep name '(or symbol cons)))
+ (when (valid-function-name-p name)
(setf (info :function :documentation name) new-value)))))
new-value)
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.27.20"
+"1.0.27.21"