diff options
author | Stephen Eglen <stephen@gnu.org> | 1998-04-05 18:26:32 +0000 |
---|---|---|
committer | Stephen Eglen <stephen@gnu.org> | 1998-04-05 18:26:32 +0000 |
commit | 666b94132b9d785b4ec6f0ecbfa451168134d150 (patch) | |
tree | 86d786fd96dcb21413135c75d5e5830e66c28dbe /lisp/emacs-lisp/pp.el | |
parent | 3c14708ccfb71af5ea2324f71955480413402b92 (diff) | |
download | emacs-666b94132b9d785b4ec6f0ecbfa451168134d150.tar.gz |
Customized.
Diffstat (limited to 'lisp/emacs-lisp/pp.el')
-rw-r--r-- | lisp/emacs-lisp/pp.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el index bdc884ab50b..beb79c745ad 100644 --- a/lisp/emacs-lisp/pp.el +++ b/lisp/emacs-lisp/pp.el @@ -22,9 +22,15 @@ ;; Boston, MA 02111-1307, USA. ;;; Code: +(defgroup pp nil + "Pretty printer for Emacs Lisp." + :prefix "pp-" + :group 'lisp) -(defvar pp-escape-newlines t - "*Value of print-escape-newlines used by pp-* functions.") +(defcustom pp-escape-newlines t + "*Value of `print-escape-newlines' used by pp-* functions." + :type 'boolean + :group 'pp) (defun pp-to-string (object) "Return a string containing the pretty-printed representation of OBJECT, |