Function: pp-29
pp-29 is a byte-compiled function defined in pp.el.gz.
Signature
(pp-29 BEG-OR-SEXP &optional END)
Documentation
Prettify the current region with printed representation of a Lisp object.
Uses the pretty-printing algorithm that was standard in Emacs 29,
which, depending on pp-use-max-width, will either use pp-28
or pp-emacs-lisp-code.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/pp.el.gz
(defun pp-29 (beg-or-sexp &optional end) ;FIXME: Better name?
"Prettify the current region with printed representation of a Lisp object.
Uses the pretty-printing algorithm that was standard in Emacs 29,
which, depending on `pp-use-max-width', will either use `pp-28'
or `pp-emacs-lisp-code'."
(if pp-use-max-width
(let ((pp--inhibit-function-formatting t)) ;FIXME: Why?
(pp-emacs-lisp-code beg-or-sexp end))
(pp-28 beg-or-sexp end)))