Skip to content

Commit

Permalink
Fix missing space in PRINT-OBJECT for TYPE-ERROR.
Browse files Browse the repository at this point in the history
Before this change, the output looked like

    #<TYPE-ERROR expected-type: "STRING"datum: 97>
  • Loading branch information
phmarek committed Apr 11, 2017
1 parent 91d8390 commit 965be03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pcl/print-object.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ sb-kernel::(progn
(if (and type datum)
(print-unreadable-object (condition stream :type t)
(format stream "~@<expected-type: ~
~/sb-impl:print-type-specifier/~_datum: ~
~/sb-impl:print-type-specifier/ ~_datum: ~
~A~:@>"
type datum))
(call-next-method))))
Expand Down

0 comments on commit 965be03

Please sign in to comment.