From d8978f48b6c8b583612f6adbe33d3030f862ef87 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Tue, 5 Jun 2007 09:44:12 +0000 Subject: [PATCH] 1.0.6.22: fix occasional UNBOUND-VARIABLE errors in MAP-REFERENCING-OBJECTS * Introduced by the removal of (SAFETY 0) in room.lisp a while ago --- src/code/room.lisp | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/code/room.lisp b/src/code/room.lisp index 21bbfb9..cda30aa 100644 --- a/src/code/room.lisp +++ b/src/code/room.lisp @@ -793,7 +793,8 @@ (when (or (eq (symbol-name obj) object) (eq (symbol-package obj) object) (eq (symbol-plist obj) object) - (eq (symbol-value obj) object)) + (and (boundp obj) + (eq (symbol-value obj) object))) (maybe-call fun obj))))) space))) diff --git a/version.lisp-expr b/version.lisp-expr index 1ac083d..1f59118 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.6.21" +"1.0.6.22" -- 1.7.10.4