resides on.
* enhancement: default dynamic-space size can be configured at build-time
without touching source, using the --dynamic-space-size argument to make.sh.
+ * enhancement: DESCRIBE recognizes symbols naming optimization policy
+ qualities.
* bug fix: compiler failed to derive the result-type of MAKE-ARRAY as
(AND VECTOR (NOT SIMPLE-ARRAY)) when appropriate. (lp#309130)
* bug fix: (THE (VALUES ...)) in LOAD-TIME-VALUE caused a compiler-error.
an error for eg. STRUCTURE. (lp#458015)
* bug fix: LOOP WITH NIL = ... signalled an unused variable style-warning.
(lp#613871, thanks to Roman Marynchak)
+ * bug fix: more reliable &REST list type derivation, a
changes in sbcl-1.0.43 relative to sbcl-1.0.42:
* incompatible change: FD-STREAMS no longer participate in the serve-event
(format stream "~@:_Expansion: ~S" (funcall fun (list symbol))))))
(terpri stream)))
+ (when (or (member symbol sb-c::*policy-qualities*)
+ (assoc symbol sb-c::*policy-dependent-qualities*))
+ (pprint-logical-block (stream nil)
+ (pprint-newline :mandatory stream)
+ (pprint-indent :block 2 stream)
+ (format stream "~A names a~:[ dependent~;n~] optimization policy quality:"
+ symbol
+ (member symbol sb-c::*policy-qualities*))
+ (describe-documentation symbol 'optimize stream t))
+ (terpri stream))
+
;; Print out properties.
(let ((plist (symbol-plist symbol)))
(when plist
;;; 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.43.26"
+"1.0.43.27"