Mercurial > emacs
annotate lisp/emacs-lisp/pp.el @ 42811:cf0c0ef57504
*** empty log message ***
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Thu, 17 Jan 2002 19:29:24 +0000 |
| parents | abd085bfec0c |
| children | ce2590f06ba0 |
| rev | line source |
|---|---|
| 13337 | 1 ;;; pp.el --- pretty printer for Emacs Lisp |
| 14169 | 2 |
| 39117 | 3 ;; Copyright (C) 1989, 1993, 2001 Free Software Foundation, Inc. |
| 8544 | 4 |
| 14224 | 5 ;; Author: Randal Schwartz <merlyn@stonehenge.com> |
| 39117 | 6 ;; Keywords: lisp |
| 8544 | 7 |
| 8 ;; This file is part of GNU Emacs. | |
| 9 | |
| 10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 11 ;; it under the terms of the GNU General Public License as published by | |
| 12 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 13 ;; any later version. | |
| 14 | |
| 15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 ;; GNU General Public License for more details. | |
| 19 | |
| 20 ;; You should have received a copy of the GNU General Public License | |
| 14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 23 ;; Boston, MA 02111-1307, USA. | |
| 8544 | 24 |
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
23244
diff
changeset
|
25 ;;; Commentary: |
|
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
23244
diff
changeset
|
26 |
| 8544 | 27 ;;; Code: |
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
23244
diff
changeset
|
28 |
| 21365 | 29 (defgroup pp nil |
| 30 "Pretty printer for Emacs Lisp." | |
| 31 :prefix "pp-" | |
| 32 :group 'lisp) | |
| 8544 | 33 |
| 21365 | 34 (defcustom pp-escape-newlines t |
| 35 "*Value of `print-escape-newlines' used by pp-* functions." | |
| 36 :type 'boolean | |
| 37 :group 'pp) | |
| 8544 | 38 |
| 39 (defun pp-to-string (object) | |
| 23244 | 40 "Return a string containing the pretty-printed representation of OBJECT. |
| 41 OBJECT can be any Lisp object. Quoting characters are used as needed | |
| 42 to make output that `read' can handle, whenever this is possible." | |
| 8544 | 43 (save-excursion |
| 44 (set-buffer (generate-new-buffer " pp-to-string")) | |
| 45 (unwind-protect | |
| 46 (progn | |
|
19147
ec57f19bc39c
(pp-to-string): Use emacs-lisp-mode-sytax-table.
Richard M. Stallman <rms@gnu.org>
parents:
16171
diff
changeset
|
47 (lisp-mode-variables nil) |
|
ec57f19bc39c
(pp-to-string): Use emacs-lisp-mode-sytax-table.
Richard M. Stallman <rms@gnu.org>
parents:
16171
diff
changeset
|
48 (set-syntax-table emacs-lisp-mode-syntax-table) |
|
20598
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
49 (let ((print-escape-newlines pp-escape-newlines) |
|
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
50 (print-quoted t)) |
| 8544 | 51 (prin1 object (current-buffer))) |
| 52 (goto-char (point-min)) | |
| 53 (while (not (eobp)) | |
| 54 ;; (message "%06d" (- (point-max) (point))) | |
| 55 (cond | |
| 56 ((condition-case err-var | |
| 57 (prog1 t (down-list 1)) | |
| 58 (error nil)) | |
|
20598
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
59 (save-excursion |
|
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
60 (backward-char 1) |
|
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
61 (skip-chars-backward "'`#^") |
|
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
62 (when (and (not (bobp)) (= ?\ (char-before))) |
|
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
63 (delete-char -1) |
|
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
64 (insert "\n")))) |
| 8544 | 65 ((condition-case err-var |
| 66 (prog1 t (up-list 1)) | |
| 67 (error nil)) | |
| 68 (while (looking-at "\\s)") | |
| 69 (forward-char 1)) | |
| 70 (delete-region | |
| 71 (point) | |
| 72 (progn (skip-chars-forward " \t") (point))) | |
|
20598
a61e2395961f
(pp-to-string): Greatly simplify by letting the
Andreas Schwab <schwab@suse.de>
parents:
19147
diff
changeset
|
73 (insert ?\n)) |
| 8544 | 74 (t (goto-char (point-max))))) |
| 75 (goto-char (point-min)) | |
| 76 (indent-sexp) | |
| 77 (buffer-string)) | |
| 78 (kill-buffer (current-buffer))))) | |
| 79 | |
| 10329 | 80 ;;;###autoload |
| 8544 | 81 (defun pp (object &optional stream) |
| 82 "Output the pretty-printed representation of OBJECT, any Lisp object. | |
| 23244 | 83 Quoting characters are printed as needed to make output that `read' |
| 8544 | 84 can handle, whenever this is possible. |
| 85 Output stream is STREAM, or value of `standard-output' (which see)." | |
| 86 (princ (pp-to-string object) (or stream standard-output))) | |
| 87 | |
| 10329 | 88 ;;;###autoload |
| 8544 | 89 (defun pp-eval-expression (expression) |
| 90 "Evaluate EXPRESSION and pretty-print value into a new display buffer. | |
| 91 If the pretty-printed value fits on one line, the message line is used | |
| 23244 | 92 instead. The value is also consed onto the front of the list |
| 93 in the variable `values'." | |
| 8544 | 94 (interactive "xPp-eval: ") |
| 95 (setq values (cons (eval expression) values)) | |
|
11730
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
96 (let* ((old-show-function temp-buffer-show-function) |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
97 ;; Use this function to display the buffer. |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
98 ;; This function either decides not to display it at all |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
99 ;; or displays it in the usual way. |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
100 (temp-buffer-show-function |
| 8544 | 101 (function |
| 102 (lambda (buf) | |
| 103 (save-excursion | |
| 104 (set-buffer buf) | |
| 105 (goto-char (point-min)) | |
| 106 (end-of-line 1) | |
| 107 (if (or (< (1+ (point)) (point-max)) | |
|
14225
ec298b8bee29
(pp-eval-expression): Use `frame-width' instead of `screen-width'.
Erik Naggum <erik@naggum.no>
parents:
14224
diff
changeset
|
108 (>= (- (point) (point-min)) (frame-width))) |
|
11730
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
109 (let ((temp-buffer-show-function old-show-function) |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
110 (old-selected (selected-window)) |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
111 (window (display-buffer buf))) |
| 8544 | 112 (goto-char (point-min)) ; expected by some hooks ... |
|
11730
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
113 (make-frame-visible (window-frame window)) |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
114 (unwind-protect |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
115 (progn |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
116 (select-window window) |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
117 (run-hooks 'temp-buffer-show-hook)) |
|
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
118 (select-window old-selected))) |
| 8544 | 119 (message "%s" (buffer-substring (point-min) (point))) |
|
11730
084c36d46615
(pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents:
10732
diff
changeset
|
120 )))))) |
| 8544 | 121 (with-output-to-temp-buffer "*Pp Eval Output*" |
| 122 (pp (car values))) | |
| 123 (save-excursion | |
| 124 (set-buffer "*Pp Eval Output*") | |
|
16171
919ed1778c0b
(pp-eval-expression): Set font-lock-default locally to nil.
Richard M. Stallman <rms@gnu.org>
parents:
15446
diff
changeset
|
125 (emacs-lisp-mode) |
|
919ed1778c0b
(pp-eval-expression): Set font-lock-default locally to nil.
Richard M. Stallman <rms@gnu.org>
parents:
15446
diff
changeset
|
126 (make-local-variable 'font-lock-verbose) |
|
919ed1778c0b
(pp-eval-expression): Set font-lock-default locally to nil.
Richard M. Stallman <rms@gnu.org>
parents:
15446
diff
changeset
|
127 (setq font-lock-verbose nil)))) |
| 8544 | 128 |
| 10329 | 129 ;;;###autoload |
| 8544 | 130 (defun pp-eval-last-sexp (arg) |
| 131 "Run `pp-eval-expression' on sexp before point (which see). | |
| 132 With argument, pretty-print output into current buffer. | |
| 133 Ignores leading comment characters." | |
| 134 (interactive "P") | |
| 135 (let ((stab (syntax-table)) (pt (point)) start exp) | |
| 136 (set-syntax-table emacs-lisp-mode-syntax-table) | |
| 137 (save-excursion | |
| 138 (forward-sexp -1) | |
| 139 ;; If first line is commented, ignore all leading comments: | |
| 140 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*;")) | |
| 141 (progn | |
| 142 (setq exp (buffer-substring (point) pt)) | |
| 143 (while (string-match "\n[ \t]*;+" exp start) | |
| 144 (setq start (1+ (match-beginning 0)) | |
| 145 exp (concat (substring exp 0 start) | |
| 146 (substring exp (match-end 0))))) | |
| 147 (setq exp (read exp))) | |
| 148 (setq exp (read (current-buffer))))) | |
| 149 (set-syntax-table stab) | |
| 150 (if arg | |
| 151 (insert (pp-to-string (eval exp))) | |
| 152 (pp-eval-expression exp)))) | |
| 153 | |
| 154 ;;; Test cases for quote | |
| 155 ;; (pp-eval-expression ''(quote quote)) | |
| 156 ;; (pp-eval-expression ''((quote a) (quote b))) | |
| 157 ;; (pp-eval-expression ''('a 'b)) ; same as above | |
| 158 ;; (pp-eval-expression ''((quote (quote quote)) (quote quote))) | |
| 159 ;; These do not satisfy the quote test. | |
| 160 ;; (pp-eval-expression ''quote) | |
| 161 ;; (pp-eval-expression ''(quote)) | |
| 162 ;; (pp-eval-expression ''(quote . quote)) | |
| 163 ;; (pp-eval-expression ''(quote a b)) | |
| 164 ;; (pp-eval-expression ''(quotefoo)) | |
| 165 ;; (pp-eval-expression ''(a b)) | |
| 166 | |
| 167 (provide 'pp) ; so (require 'pp) works | |
| 168 | |
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
23244
diff
changeset
|
169 ;;; pp.el ends here |
