aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/pp.el
diff options
context:
space:
mode:
authorStephen Eglen <[email protected]>1998-04-05 18:26:32 +0000
committerStephen Eglen <[email protected]>1998-04-05 18:26:32 +0000
commit666b94132b9d785b4ec6f0ecbfa451168134d150 (patch)
tree86d786fd96dcb21413135c75d5e5830e66c28dbe /lisp/emacs-lisp/pp.el
parent3c14708ccfb71af5ea2324f71955480413402b92 (diff)
Customized.
Diffstat (limited to 'lisp/emacs-lisp/pp.el')
-rw-r--r--lisp/emacs-lisp/pp.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el
index bdc884ab50..beb79c745a 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,