annotate lisp/emacs-lisp/pp.el @ 91010:aaccdab0ee26

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 852-856) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 93-96) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 245) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-249
author Miles Bader <miles@gnu.org>
date Tue, 21 Aug 2007 04:54:03 +0000
parents 35e3789db058
children 606f2d163a64
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13337
84acc3adcd63 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 11730
diff changeset
1 ;;; pp.el --- pretty printer for Emacs Lisp
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13337
diff changeset
2
64751
5b1a238fcbb4 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64085
diff changeset
3 ;; Copyright (C) 1989, 1993, 2001, 2002, 2003, 2004,
75346
7a3f13e2dd57 Add 2007 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 75173
diff changeset
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
14224
e47d5fcad4be Comment change.
Erik Naggum <erik@naggum.no>
parents: 14169
diff changeset
6 ;; Author: Randal Schwartz <merlyn@stonehenge.com>
39117
abd085bfec0c Add Keywords header.
Gerd Moellmann <gerd@gnu.org>
parents: 38436
diff changeset
7 ;; Keywords: lisp
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
78217
935157c0b596 Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents: 75473
diff changeset
13 ;; the Free Software Foundation; either version 3, or (at your option)
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; any later version.
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13337
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64085
18a818a2ee7c Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63852
diff changeset
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18a818a2ee7c Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63852
diff changeset
24 ;; Boston, MA 02110-1301, USA.
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 23244
diff changeset
26 ;;; Commentary:
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 23244
diff changeset
27
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 ;;; Code:
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 23244
diff changeset
29
65193
228d206af8c8 (font-lock-verbose): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents: 64751
diff changeset
30 (defvar font-lock-verbose)
228d206af8c8 (font-lock-verbose): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents: 64751
diff changeset
31
21365
db005054f15d Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20598
diff changeset
32 (defgroup pp nil
db005054f15d Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20598
diff changeset
33 "Pretty printer for Emacs Lisp."
db005054f15d Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20598
diff changeset
34 :prefix "pp-"
db005054f15d Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20598
diff changeset
35 :group 'lisp)
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 43295
diff changeset
37 (defcustom pp-escape-newlines t
21365
db005054f15d Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20598
diff changeset
38 "*Value of `print-escape-newlines' used by pp-* functions."
db005054f15d Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20598
diff changeset
39 :type 'boolean
db005054f15d Customized.
Stephen Eglen <stephen@gnu.org>
parents: 20598
diff changeset
40 :group 'pp)
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41
43295
ce2590f06ba0 2002-02-14 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 39117
diff changeset
42 ;;;###autoload
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 (defun pp-to-string (object)
23244
67e80974136e Doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 21365
diff changeset
44 "Return a string containing the pretty-printed representation of OBJECT.
67e80974136e Doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 21365
diff changeset
45 OBJECT can be any Lisp object. Quoting characters are used as needed
67e80974136e Doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 21365
diff changeset
46 to make output that `read' can handle, whenever this is possible."
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 (save-excursion
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 (set-buffer (generate-new-buffer " pp-to-string"))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 (unwind-protect
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 (progn
19147
ec57f19bc39c (pp-to-string): Use emacs-lisp-mode-sytax-table.
Richard M. Stallman <rms@gnu.org>
parents: 16171
diff changeset
51 (lisp-mode-variables nil)
ec57f19bc39c (pp-to-string): Use emacs-lisp-mode-sytax-table.
Richard M. Stallman <rms@gnu.org>
parents: 16171
diff changeset
52 (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
53 (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
54 (print-quoted t))
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 (prin1 object (current-buffer)))
55802
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
56 (pp-buffer)
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 (buffer-string))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58 (kill-buffer (current-buffer)))))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59
56274
25c3950468a9 (pp-buffer): Add autoload.
Juri Linkov <juri@jurta.org>
parents: 55802
diff changeset
60 ;;;###autoload
55802
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
61 (defun pp-buffer ()
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
62 "Prettify the current buffer with printed representation of a Lisp object."
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
63 (goto-char (point-min))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
64 (while (not (eobp))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
65 ;; (message "%06d" (- (point-max) (point)))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
66 (cond
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
67 ((condition-case err-var
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
68 (prog1 t (down-list 1))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
69 (error nil))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
70 (save-excursion
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
71 (backward-char 1)
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
72 (skip-chars-backward "'`#^")
63852
dd7fb3231397 (pp-buffer): Change space constants followed by a sexp to "?\s ".
Juanma Barranquero <lekktu@gmail.com>
parents: 56274
diff changeset
73 (when (and (not (bobp)) (memq (char-before) '(?\s ?\t ?\n)))
55802
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
74 (delete-region
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
75 (point)
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
76 (progn (skip-chars-backward " \t\n") (point)))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
77 (insert "\n"))))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
78 ((condition-case err-var
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
79 (prog1 t (up-list 1))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
80 (error nil))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
81 (while (looking-at "\\s)")
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
82 (forward-char 1))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
83 (delete-region
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
84 (point)
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
85 (progn (skip-chars-forward " \t\n") (point)))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
86 (insert ?\n))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
87 (t (goto-char (point-max)))))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
88 (goto-char (point-min))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
89 (indent-sexp))
7bb617df33db (pp-buffer): New fun created from the code in
Juri Linkov <juri@jurta.org>
parents: 54502
diff changeset
90
10329
aa393c4b380c Add autoload cookies.
Noah Friedman <friedman@splode.com>
parents: 8544
diff changeset
91 ;;;###autoload
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 (defun pp (object &optional stream)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 "Output the pretty-printed representation of OBJECT, any Lisp object.
23244
67e80974136e Doc fixes.
Karl Heuer <kwzh@gnu.org>
parents: 21365
diff changeset
94 Quoting characters are printed as needed to make output that `read'
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95 can handle, whenever this is possible.
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96 Output stream is STREAM, or value of `standard-output' (which see)."
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 (princ (pp-to-string object) (or stream standard-output)))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98
10329
aa393c4b380c Add autoload cookies.
Noah Friedman <friedman@splode.com>
parents: 8544
diff changeset
99 ;;;###autoload
75173
4e312c5cf360 (pp-eval-expression): Once again eval the argument, but read it as `X' does.
Richard M. Stallman <rms@gnu.org>
parents: 73632
diff changeset
100 (defun pp-eval-expression (expression)
4e312c5cf360 (pp-eval-expression): Once again eval the argument, but read it as `X' does.
Richard M. Stallman <rms@gnu.org>
parents: 73632
diff changeset
101 "Evaluate EXPRESSION and pretty-print its value.
4e312c5cf360 (pp-eval-expression): Once again eval the argument, but read it as `X' does.
Richard M. Stallman <rms@gnu.org>
parents: 73632
diff changeset
102 Also add the value to the front of the list in the variable `values'."
4e312c5cf360 (pp-eval-expression): Once again eval the argument, but read it as `X' does.
Richard M. Stallman <rms@gnu.org>
parents: 73632
diff changeset
103 (interactive
4e312c5cf360 (pp-eval-expression): Once again eval the argument, but read it as `X' does.
Richard M. Stallman <rms@gnu.org>
parents: 73632
diff changeset
104 (list (read-from-minibuffer "Eval: " nil read-expression-map t
4e312c5cf360 (pp-eval-expression): Once again eval the argument, but read it as `X' does.
Richard M. Stallman <rms@gnu.org>
parents: 73632
diff changeset
105 'read-expression-history)))
82240
7bbb1d46943e Drew Adams <drew.adams at oracle.com>
Glenn Morris <rgm@gnu.org>
parents: 78217
diff changeset
106 (message "Evaluating...")
75173
4e312c5cf360 (pp-eval-expression): Once again eval the argument, but read it as `X' does.
Richard M. Stallman <rms@gnu.org>
parents: 73632
diff changeset
107 (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
108 (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
109 ;; 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
110 ;; 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
111 ;; 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
112 (temp-buffer-show-function
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 (function
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114 (lambda (buf)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 (save-excursion
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116 (set-buffer buf)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 (goto-char (point-min))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 (end-of-line 1)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 (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
120 (>= (- (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
121 (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
122 (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
123 (window (display-buffer buf)))
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 (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
125 (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
126 (unwind-protect
084c36d46615 (pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents: 10732
diff changeset
127 (progn
084c36d46615 (pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents: 10732
diff changeset
128 (select-window window)
084c36d46615 (pp-eval-expression): Update use of temp-buffer-show-function.
Richard M. Stallman <rms@gnu.org>
parents: 10732
diff changeset
129 (run-hooks 'temp-buffer-show-hook))
82240
7bbb1d46943e Drew Adams <drew.adams at oracle.com>
Glenn Morris <rgm@gnu.org>
parents: 78217
diff changeset
130 (select-window old-selected)
7bbb1d46943e Drew Adams <drew.adams at oracle.com>
Glenn Morris <rgm@gnu.org>
parents: 78217
diff changeset
131 (message "Evaluating...done. \
7bbb1d46943e Drew Adams <drew.adams at oracle.com>
Glenn Morris <rgm@gnu.org>
parents: 78217
diff changeset
132 See buffer *Pp Eval Output*.")))
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133 (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
134 ))))))
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135 (with-output-to-temp-buffer "*Pp Eval Output*"
54502
a8550ca246eb (pp-eval-expression): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52401
diff changeset
136 (pp (car values))
a8550ca246eb (pp-eval-expression): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52401
diff changeset
137 (with-current-buffer standard-output
a8550ca246eb (pp-eval-expression): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52401
diff changeset
138 (emacs-lisp-mode)
82240
7bbb1d46943e Drew Adams <drew.adams at oracle.com>
Glenn Morris <rgm@gnu.org>
parents: 78217
diff changeset
139 (setq buffer-read-only nil)
54502
a8550ca246eb (pp-eval-expression): Simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52401
diff changeset
140 (set (make-local-variable 'font-lock-verbose) nil)))))
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141
10329
aa393c4b380c Add autoload cookies.
Noah Friedman <friedman@splode.com>
parents: 8544
diff changeset
142 ;;;###autoload
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143 (defun pp-eval-last-sexp (arg)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 "Run `pp-eval-expression' on sexp before point (which see).
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 With argument, pretty-print output into current buffer.
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 Ignores leading comment characters."
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147 (interactive "P")
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 (let ((stab (syntax-table)) (pt (point)) start exp)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149 (set-syntax-table emacs-lisp-mode-syntax-table)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 (save-excursion
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 (forward-sexp -1)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 ;; If first line is commented, ignore all leading comments:
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
153 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*;"))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 (progn
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 (setq exp (buffer-substring (point) pt))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156 (while (string-match "\n[ \t]*;+" exp start)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157 (setq start (1+ (match-beginning 0))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158 exp (concat (substring exp 0 start)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
159 (substring exp (match-end 0)))))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
160 (setq exp (read exp)))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
161 (setq exp (read (current-buffer)))))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
162 (set-syntax-table stab)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
163 (if arg
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
164 (insert (pp-to-string (eval exp)))
75473
869eaab96a64 (pp-eval-last-sexp): Don't eval here.
Richard M. Stallman <rms@gnu.org>
parents: 75346
diff changeset
165 (pp-eval-expression exp))))
8544
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
166
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
167 ;;; Test cases for quote
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
168 ;; (pp-eval-expression ''(quote quote))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
169 ;; (pp-eval-expression ''((quote a) (quote b)))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
170 ;; (pp-eval-expression ''('a 'b)) ; same as above
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
171 ;; (pp-eval-expression ''((quote (quote quote)) (quote quote)))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
172 ;; These do not satisfy the quote test.
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
173 ;; (pp-eval-expression ''quote)
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
174 ;; (pp-eval-expression ''(quote))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
175 ;; (pp-eval-expression ''(quote . quote))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
176 ;; (pp-eval-expression ''(quote a b))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
177 ;; (pp-eval-expression ''(quotefoo))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
178 ;; (pp-eval-expression ''(a b))
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
179
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
180 (provide 'pp) ; so (require 'pp) works
dc4a53a05b98 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
181
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 49598
diff changeset
182 ;;; arch-tag: b0f7c65b-02c7-42bb-9ee3-508a59b8fbb9
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 23244
diff changeset
183 ;;; pp.el ends here