From 965be030d6504b986557c12a020e5ec969712f77 Mon Sep 17 00:00:00 2001 From: Philipp Marek Date: Sun, 10 Jul 2016 20:15:18 +0200 Subject: [PATCH] Fix missing space in PRINT-OBJECT for TYPE-ERROR. Before this change, the output looked like # --- src/pcl/print-object.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pcl/print-object.lisp b/src/pcl/print-object.lisp index 72e3ef190d..d63fc3bb2e 100644 --- a/src/pcl/print-object.lisp +++ b/src/pcl/print-object.lisp @@ -178,7 +178,7 @@ sb-kernel::(progn (if (and type datum) (print-unreadable-object (condition stream :type t) (format stream "~@" type datum)) (call-next-method))))