From 725f83db4e3d2171cd167a8ea62f382faaa2e238 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Wed, 7 Apr 2010 14:38:02 +0000 Subject: [PATCH] 1.0.37.50: check for unbound FORMAT-CONTROL for SIMPLE-CONDITIONs ...in the default PRINT-OBJECT method. --- src/code/condition.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/code/condition.lisp b/src/code/condition.lisp index 14a50ce..21dacb2 100644 --- a/src/code/condition.lisp +++ b/src/code/condition.lisp @@ -171,7 +171,7 @@ ;;; The current code doesn't seem to quite match that. (def!method print-object ((x condition) stream) (if *print-escape* - (if (typep x 'simple-condition) + (if (and (typep x 'simple-condition) (slot-boundp x 'format-control)) (print-unreadable-object (x stream :type t :identity t) (format stream "~S" (simple-condition-format-control x))) (print-unreadable-object (x stream :type t :identity t))) diff --git a/version.lisp-expr b/version.lisp-expr index ea30468..70a84a8 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; 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.37.49" +"1.0.37.50" -- 1.7.10.4