projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4adf30d
)
Fix describe-object for characters.
author
Stas Boukarev
<stassats@gmail.com>
Mon, 13 May 2013 15:40:20 +0000
(19:40 +0400)
committer
Stas Boukarev
<stassats@gmail.com>
Mon, 13 May 2013 15:40:20 +0000
(19:40 +0400)
Don't prefix lines with ":_".
src/code/describe.lisp
patch
|
blob
|
history
diff --git
a/src/code/describe.lisp
b/src/code/describe.lisp
index
17dc2fb
..
8f64b6a
100644
(file)
--- 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)