Function: kfile:pretty-print

kfile:pretty-print is a byte-compiled function defined in kfile.el.

Signature

(kfile:pretty-print OBJECT &optional STREAM)

Documentation

Output the pretty-printed representation of OBJECT, any Lisp object.

Quoting characters are printed when needed to make output that read can handle, whenever this is possible. Output stream is STREAM, or value of standard-output (which see).

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kfile.el
(defun kfile:pretty-print (object &optional stream)
  "Output the pretty-printed representation of OBJECT, any Lisp object.
Quoting characters are printed when needed to make output that `read'
can handle, whenever this is possible.
Output stream is STREAM, or value of `standard-output' (which see)."
  (princ (kfile:print-to-string object) (or stream standard-output)))