(define-condition simple-error (simple-condition error) ())
-;;; not specified by ANSI, but too useful not to have around.
-(define-condition simple-style-warning (simple-condition style-warning) ())
-
(define-condition storage-condition (serious-condition) ())
(define-condition type-error (error)
(type-error-datum condition)
(type-error-expected-type condition)))))
+;;; not specified by ANSI, but too useful not to have around.
+(define-condition simple-style-warning (simple-condition style-warning) ())
(define-condition simple-type-error (simple-condition type-error) ())
(define-condition program-error (error) ())
<http://sbcl.sourceforge.net/>.~:@>"
'((fmakunbound 'compile))))))
-(define-condition simple-storage-condition (storage-condition simple-condition) ())
+(define-condition simple-storage-condition (storage-condition simple-condition)
+ ())
;;; a condition for use in stubs for operations which aren't supported
;;; on some platforms
:stream *standard-input*)))
;; should be printable
(dolist (c (list
- ;; but not yet, o lord (should be fixed soon by WHN, in
- ;; one or more commits ca. 1.0.9.55+, #+NILed out 'til
- ;; then)
- #+nil my-stream-error-1-0-9
- #+nil parse-foo-error-1-0-9
- ;; fixed, hallelujah
+ my-stream-error-1-0-9
+ parse-foo-error-1-0-9
read-foo-error-1-0-9))
- ;; escaped or not
+ ;; whether escaped or not
(dolist (*print-escape* '(nil t))
(write c :stream (make-string-output-stream)))))
;;; 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.11.2"
+"1.0.11.3"