Function: gnus-pp-to-string

gnus-pp-to-string is a byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-pp-to-string FORM)

Documentation

The same as pp-to-string.

Bind print-quoted to t, and print-length and print-level to nil. See also gnus-bind-print-variables.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-pp-to-string (form)
  "The same as `pp-to-string'.
Bind `print-quoted' to t, and `print-length' and `print-level' to
nil.  See also `gnus-bind-print-variables'."
  (gnus-bind-print-variables (pp-to-string form)))