From 7553f9ddede4fdbd2212b15694925fde95d1f2dd Mon Sep 17 00:00:00 2001 From: Stas Boukarev Date: Mon, 13 May 2013 19:40:20 +0400 Subject: [PATCH] Fix describe-object for characters. Don't prefix lines with ":_". --- src/code/describe.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/code/describe.lisp b/src/code/describe.lisp index 17dc2fb..8f64b6a 100644 --- a/src/code/describe.lisp +++ b/src/code/describe.lisp @@ -204,8 +204,8 @@ (defmethod describe-object ((x character) s) (print-standard-describe-header x s) - (format s "~%:_Char-code: ~S" (char-code x)) - (format s "~%:_Char-name: ~A~%_" (char-name x))) + (format s "~%Char-code: ~S" (char-code x)) + (format s "~%Char-name: ~A" (char-name x))) (defmethod describe-object ((x array) s) (print-standard-describe-header x s) -- 1.7.10.4