PRNG where possible. (Thanks to Fare Rideau; launchpad bug lp#310116)
* bug fix: Fix SB-SIMPLE-STREAMS:READ-VECTOR to correctly set the
FILE-POSITION of the stream being read from. (launchpad bug lp#491087)
- * bug fix: Fix grammer and style issues for the docstrings of
+ * bug fix: Fix grammar and style issues for the docstrings of
printer-related variables and functions. (Thanks to mon_key; launchpad
bug lp#518696)
* bug fix: Fix compilation on chenygc platforms. Thanks to Larry Valkama and
"Takes and expands a type specifier once like MACROEXPAND-1.
Returns two values: the expansion, and a boolean that is true when
expansion happened."
- (declare (type-specifier type-specifier))
+ (declare (type type-specifier type-specifier))
(declare (ignore env))
(multiple-value-bind (expander lspec)
(let ((spec type-specifier))
"Takes and expands a type specifier repeatedly like MACROEXPAND.
Returns two values: the expansion, and a boolean that is true when
expansion happened."
- (declare (type-specifier type-specifier))
+ (declare (type type-specifier type-specifier))
(multiple-value-bind (expansion flag)
(typexpand-1 type-specifier env)
(if flag
(defun typexpand-all (type-specifier &optional env)
#!+sb-doc
"Takes and expands a type specifier recursively like MACROEXPAND-ALL."
- (declare (type-specifier type-specifier))
+ (declare (type type-specifier type-specifier))
(declare (ignore env))
;; I first thought this would not be a good implementation because
;; it signals an error on e.g. (CONS 1 2) until I realized that
;;; 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.35.22"
+"1.0.35.23"