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

Fix PRINT-UNPRINTABLE-OBJECT
This commit is contained in:
Samuel Freilich
2022-10-27 06:54:04 -04:00
committed by GitHub
+1 -1
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>