File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6969 (write-string spaces stream :end n)))
7070
7171(defun format-relative-tab (stream colrel colinc)
72- (if (inravina :pretty-stream-p stream )
72+ (if (inravina-shim :pretty-stream-p stream )
7373 (pprint-tab :line-relative colrel colinc stream )
7474 (let* ((cur (#- (or ecl clasp) sys ::charpos #+ (or ecl clasp) sys ::file-column stream ))
7575 (spaces (if (and cur (plusp colinc))
7878 (output-spaces stream spaces))))
7979
8080(defun format-absolute-tab (stream colnum colinc)
81- (if (inravina :pretty-stream-p stream )
81+ (if (inravina-shim :pretty-stream-p stream )
8282 (pprint-tab :line colnum colinc stream )
8383 (let ((cur (#- (or ecl clasp) sys ::charpos #+ (or ecl clasp) sys :file-column stream )))
8484 (cond ((null cur)
Original file line number Diff line number Diff line change 1818(defun %print-unreadable-object (object stream type identity body)
1919 (cond (*print-readably*
2020 (error ' print-not-readable :object object))
21- ((and *print-pretty* (inravina :pretty-stream-p stream ))
21+ ((and *print-pretty* (inravina-shim :pretty-stream-p stream ))
2222 (pprint-logical-block (stream nil :prefix " #<" :suffix " >" )
2323 (print-unreadable-object-contents object stream type identity body)))
2424 (t
You can’t perform that action at this time.
0 commit comments