Function: gnus-score-pretty-print
gnus-score-pretty-print is an interactive and byte-compiled function
defined in score-mode.el.gz.
Signature
(gnus-score-pretty-print)
Documentation
Format the current score file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/score-mode.el.gz
(defun gnus-score-pretty-print ()
"Format the current score file."
(interactive nil gnus-score-mode)
(goto-char (point-min))
(let ((form (read (current-buffer))))
(erase-buffer)
(let ((emacs-lisp-mode-syntax-table score-mode-syntax-table))
(gnus-pp form)))
(goto-char (point-min)))