mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-16 22:32:05 -08:00
PRINT-OBJECT did not have a valid default for built in class
This commit is contained in:
parent
7474915c7b
commit
2804e1aa59
1 changed files with 3 additions and 0 deletions
|
|
@ -167,6 +167,9 @@ printer and we should rather use MAKE-LOAD-FORM."
|
|||
;;; ----------------------------------------------------------------------
|
||||
|
||||
(defmethod print-object ((instance t) stream)
|
||||
(write instance :stream stream))
|
||||
|
||||
(defmethod print-object ((instance standard-object) stream)
|
||||
(print-unreadable-object (instance stream)
|
||||
(let ((*package* (find-package "CL")))
|
||||
(format stream "a ~S"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue