Skip to content

Commit 576e56b

Browse files
committed
Fix pretty-stream-p
1 parent 826c841 commit 576e56b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lisp/kernel/lsp/format-pprint.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
(defun %print-unreadable-object (object stream type identity body)
2727
(cond (*print-readably*
2828
(error 'print-not-readable :object object))
29-
((and *print-pretty* (pretty-stream-p stream))
29+
((and *print-pretty* (inravina:pretty-stream-p inravina:*client* stream))
3030
(pprint-logical-block (stream nil :prefix "#<" :suffix ">")
3131
(print-unreadable-object-contents object stream type identity body)))
3232
(t

0 commit comments

Comments
 (0)