Merge pull request #719 from phoe-trash/gh-pages

Fix PRINT-UNPRINTABLE-OBJECT
pull/720/head
Samuel Freilich 2022-10-27 06:54:04 -04:00 committed by GitHub
commit 0b003a9ae1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2087,7 +2087,7 @@ Robert Brown
</p>
<CODE_SNIPPET>
(defmethod print-object ((p person) stream)
(print-unprintable-object (p stream :type t :identity t)
(print-unreadable-object (p stream :type t :identity t)
(with-slots (first-name last-name) p
(safe-format stream "~a ~a" first-name last-name))))
</CODE_SNIPPET>