38412
|
1 ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands
|
659
|
2
|
64751
|
3 ;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2002, 2003, 2004,
|
|
4 ;; 2005 Free Software Foundation, Inc.
|
846
|
5
|
807
|
6 ;; Maintainer: FSF
|
811
|
7 ;; Keywords: lisp, languages
|
807
|
8
|
213
|
9 ;; This file is part of GNU Emacs.
|
|
10
|
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
12 ;; it under the terms of the GNU General Public License as published by
|
807
|
13 ;; the Free Software Foundation; either version 2, or (at your option)
|
213
|
14 ;; any later version.
|
|
15
|
|
16 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19 ;; GNU General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
14169
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
64085
|
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
24 ;; Boston, MA 02110-1301, USA.
|
213
|
25
|
2307
|
26 ;;; Commentary:
|
|
27
|
|
28 ;; The base major mode for editing Lisp code (used also for Emacs Lisp).
|
27809
|
29 ;; This mode is documented in the Emacs manual.
|
2307
|
30
|
|
31 ;;; Code:
|
|
32
|
65200
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
33 (defvar font-lock-comment-face)
|
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
34 (defvar font-lock-doc-face)
|
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
35 (defvar font-lock-keywords-case-fold-search)
|
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
36 (defvar font-lock-string-face)
|
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
37
|
27809
|
38 (defvar lisp-mode-abbrev-table nil)
|
213
|
39
|
27809
|
40 (defvar emacs-lisp-mode-syntax-table
|
|
41 (let ((table (make-syntax-table)))
|
213
|
42 (let ((i 0))
|
|
43 (while (< i ?0)
|
27809
|
44 (modify-syntax-entry i "_ " table)
|
213
|
45 (setq i (1+ i)))
|
|
46 (setq i (1+ ?9))
|
|
47 (while (< i ?A)
|
27809
|
48 (modify-syntax-entry i "_ " table)
|
213
|
49 (setq i (1+ i)))
|
|
50 (setq i (1+ ?Z))
|
|
51 (while (< i ?a)
|
27809
|
52 (modify-syntax-entry i "_ " table)
|
213
|
53 (setq i (1+ i)))
|
|
54 (setq i (1+ ?z))
|
|
55 (while (< i 128)
|
27809
|
56 (modify-syntax-entry i "_ " table)
|
213
|
57 (setq i (1+ i)))
|
65200
67e480d2dc8c
(font-lock-comment-face, font-lock-doc-face, font-lock-string-face,
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
58 (modify-syntax-entry ?\s " " table)
|
27809
|
59 (modify-syntax-entry ?\t " " table)
|
|
60 (modify-syntax-entry ?\f " " table)
|
|
61 (modify-syntax-entry ?\n "> " table)
|
64349
1c727f4fdfb0
(emacs-lisp-mode-syntax-table): Don't give ^M comment-end syntax.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
62 ;;; This is probably obsolete since nowadays such features use overlays.
|
1c727f4fdfb0
(emacs-lisp-mode-syntax-table): Don't give ^M comment-end syntax.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
63 ;;; ;; Give CR the same syntax as newline, for selective-display.
|
1c727f4fdfb0
(emacs-lisp-mode-syntax-table): Don't give ^M comment-end syntax.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
64 ;;; (modify-syntax-entry ?\^m "> " table)
|
27809
|
65 (modify-syntax-entry ?\; "< " table)
|
|
66 (modify-syntax-entry ?` "' " table)
|
|
67 (modify-syntax-entry ?' "' " table)
|
|
68 (modify-syntax-entry ?, "' " table)
|
50677
|
69 (modify-syntax-entry ?@ "' " table)
|
213
|
70 ;; Used to be singlequote; changed for flonums.
|
27809
|
71 (modify-syntax-entry ?. "_ " table)
|
|
72 (modify-syntax-entry ?# "' " table)
|
|
73 (modify-syntax-entry ?\" "\" " table)
|
|
74 (modify-syntax-entry ?\\ "\\ " table)
|
|
75 (modify-syntax-entry ?\( "() " table)
|
|
76 (modify-syntax-entry ?\) ")( " table)
|
|
77 (modify-syntax-entry ?\[ "(] " table)
|
27814
|
78 (modify-syntax-entry ?\] ")[ " table))
|
27809
|
79 table))
|
213
|
80
|
27809
|
81 (defvar lisp-mode-syntax-table
|
|
82 (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
|
|
83 (modify-syntax-entry ?\[ "_ " table)
|
|
84 (modify-syntax-entry ?\] "_ " table)
|
|
85 (modify-syntax-entry ?# "' 14bn" table)
|
27934
|
86 (modify-syntax-entry ?| "\" 23b" table)
|
27809
|
87 table))
|
285
|
88
|
213
|
89 (define-abbrev-table 'lisp-mode-abbrev-table ())
|
|
90
|
12701
|
91 (defvar lisp-imenu-generic-expression
|
27809
|
92 (list
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
93 (list nil
|
39564
|
94 (purecopy (concat "^\\s-*("
|
|
95 (eval-when-compile
|
|
96 (regexp-opt
|
|
97 '("defun" "defun*" "defsubst" "defmacro"
|
|
98 "defadvice" "define-skeleton"
|
|
99 "define-minor-mode" "define-derived-mode"
|
60874
|
100 "define-generic-mode"
|
39564
|
101 "define-compiler-macro" "define-modify-macro"
|
|
102 "defsetf" "define-setf-expander"
|
|
103 "define-method-combination"
|
40790
|
104 "defgeneric" "defmethod") t))
|
|
105 "\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)"))
|
39564
|
106 2)
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
107 (list (purecopy "Variables")
|
39564
|
108 (purecopy (concat "^\\s-*("
|
|
109 (eval-when-compile
|
|
110 (regexp-opt
|
|
111 '("defvar" "defconst" "defconstant" "defcustom"
|
40790
|
112 "defparameter" "define-symbol-macro") t))
|
|
113 "\\s-+\\(\\sw\\(\\sw\\|\\s_\\)+\\)"))
|
39564
|
114 2)
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
115 (list (purecopy "Types")
|
39564
|
116 (purecopy (concat "^\\s-*("
|
|
117 (eval-when-compile
|
|
118 (regexp-opt
|
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
diff
changeset
|
119 '("defgroup" "deftheme" "deftype" "defstruct"
|
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
diff
changeset
|
120 "defclass" "define-condition" "define-widget"
|
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
diff
changeset
|
121 "defface" "defpackage") t))
|
40790
|
122 "\\s-+'?\\(\\sw\\(\\sw\\|\\s_\\)+\\)"))
|
12701
|
123 2))
|
|
124
|
|
125 "Imenu generic expression for Lisp mode. See `imenu-generic-expression'.")
|
|
126
|
39564
|
127 ;; This was originally in autoload.el and is still used there.
|
|
128 (put 'autoload 'doc-string-elt 3)
|
|
129 (put 'defun 'doc-string-elt 3)
|
|
130 (put 'defun* 'doc-string-elt 3)
|
|
131 (put 'defvar 'doc-string-elt 3)
|
|
132 (put 'defcustom 'doc-string-elt 3)
|
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
diff
changeset
|
133 (put 'deftheme 'doc-string-elt 2)
|
39564
|
134 (put 'defconst 'doc-string-elt 3)
|
|
135 (put 'defmacro 'doc-string-elt 3)
|
41812
|
136 (put 'defmacro* 'doc-string-elt 3)
|
39564
|
137 (put 'defsubst 'doc-string-elt 3)
|
63108
|
138 (put 'defstruct 'doc-string-elt 2)
|
39564
|
139 (put 'define-skeleton 'doc-string-elt 2)
|
|
140 (put 'define-derived-mode 'doc-string-elt 4)
|
56996
|
141 (put 'define-compilation-mode 'doc-string-elt 3)
|
39564
|
142 (put 'easy-mmode-define-minor-mode 'doc-string-elt 2)
|
|
143 (put 'define-minor-mode 'doc-string-elt 2)
|
|
144 (put 'define-generic-mode 'doc-string-elt 7)
|
|
145 ;; define-global-mode has no explicit docstring.
|
|
146 (put 'easy-mmode-define-global-mode 'doc-string-elt 0)
|
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
diff
changeset
|
147 (put 'define-ibuffer-filter 'doc-string-elt 2)
|
42699
|
148 (put 'define-ibuffer-op 'doc-string-elt 3)
|
49522
4dd5da1ea3dc
* font-lock.el (lisp-font-lock-keywords-1): Match `deftheme'.
John Paul Wallington <jpw@pobox.com>
diff
changeset
|
149 (put 'define-ibuffer-sorter 'doc-string-elt 2)
|
39564
|
150
|
|
151 (defun lisp-font-lock-syntactic-face-function (state)
|
|
152 (if (nth 3 state)
|
|
153 (if (and (eq (nth 0 state) 1)
|
|
154 ;; This might be a docstring.
|
|
155 (save-excursion
|
|
156 (let ((n 0))
|
|
157 (goto-char (nth 8 state))
|
|
158 (condition-case nil
|
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
159 (while (and (not (bobp))
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
160 (progn (backward-sexp 1) (setq n (1+ n)))))
|
39564
|
161 (scan-error nil))
|
|
162 (when (> n 0)
|
|
163 (let ((sym (intern-soft
|
|
164 (buffer-substring
|
|
165 (point) (progn (forward-sexp 1) (point))))))
|
|
166 (eq n (or (get sym 'doc-string-elt) 3)))))))
|
|
167 font-lock-doc-face
|
|
168 font-lock-string-face)
|
|
169 font-lock-comment-face))
|
|
170
|
|
171 ;; The LISP-SYNTAX argument is used by code in inf-lisp.el and is
|
|
172 ;; (uselessly) passed from pp.el, chistory.el, gnus-kill.el and score-mode.el
|
|
173 (defun lisp-mode-variables (&optional lisp-syntax)
|
40790
|
174 (when lisp-syntax
|
|
175 (set-syntax-table lisp-mode-syntax-table))
|
213
|
176 (setq local-abbrev-table lisp-mode-abbrev-table)
|
|
177 (make-local-variable 'paragraph-ignore-fill-prefix)
|
|
178 (setq paragraph-ignore-fill-prefix t)
|
10628
|
179 (make-local-variable 'fill-paragraph-function)
|
|
180 (setq fill-paragraph-function 'lisp-fill-paragraph)
|
64088
|
181 ;; Adaptive fill mode gets the fill wrong for a one-line paragraph made of
|
|
182 ;; a single docstring. Let's fix it here.
|
|
183 (set (make-local-variable 'adaptive-fill-function)
|
|
184 (lambda () (if (looking-at "\\s-+\"[^\n\"]+\"\\s-*$") "")))
|
14495
|
185 ;; Adaptive fill mode gets in the way of auto-fill,
|
|
186 ;; and should make no difference for explicit fill
|
|
187 ;; because lisp-fill-paragraph should do the job.
|
40790
|
188 ;; I believe that newcomment's auto-fill code properly deals with it -stef
|
|
189 ;;(set (make-local-variable 'adaptive-fill-mode) nil)
|
213
|
190 (make-local-variable 'indent-line-function)
|
|
191 (setq indent-line-function 'lisp-indent-line)
|
|
192 (make-local-variable 'indent-region-function)
|
|
193 (setq indent-region-function 'lisp-indent-region)
|
|
194 (make-local-variable 'parse-sexp-ignore-comments)
|
|
195 (setq parse-sexp-ignore-comments t)
|
6076
|
196 (make-local-variable 'outline-regexp)
|
60074
|
197 (setq outline-regexp ";;;\\(;* [^ \t\n]\\|###autoload\\)\\|(")
|
26682
|
198 (make-local-variable 'outline-level)
|
|
199 (setq outline-level 'lisp-outline-level)
|
213
|
200 (make-local-variable 'comment-start)
|
|
201 (setq comment-start ";")
|
|
202 (make-local-variable 'comment-start-skip)
|
15597
ca84d7021f4e
(lisp-mode-variables): Set comment-start-skip to ignore backslash-quoted
Miles Bader <miles@gnu.org>
diff
changeset
|
203 ;; Look within the line for a ; following an even number of backslashes
|
ca84d7021f4e
(lisp-mode-variables): Set comment-start-skip to ignore backslash-quoted
Miles Bader <miles@gnu.org>
diff
changeset
|
204 ;; after either a non-backslash or the line beginning.
|
ca84d7021f4e
(lisp-mode-variables): Set comment-start-skip to ignore backslash-quoted
Miles Bader <miles@gnu.org>
diff
changeset
|
205 (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *")
|
62363
|
206 (make-local-variable 'font-lock-comment-start-skip)
|
|
207 ;; Font lock mode uses this only when it KNOWS a comment is starting.
|
63108
|
208 (setq font-lock-comment-start-skip ";+ *")
|
28994
|
209 (make-local-variable 'comment-add)
|
|
210 (setq comment-add 1) ;default to `;;' in comment-region
|
213
|
211 (make-local-variable 'comment-column)
|
|
212 (setq comment-column 40)
|
54315
|
213 ;; Don't get confused by `;' in doc strings when paragraph-filling.
|
|
214 (set (make-local-variable 'comment-use-global-state) t)
|
63764
|
215 (make-local-variable 'comment-indent-function)
|
|
216 (setq comment-indent-function 'lisp-comment-indent)
|
12701
|
217 (make-local-variable 'imenu-generic-expression)
|
27814
|
218 (setq imenu-generic-expression lisp-imenu-generic-expression)
|
|
219 (make-local-variable 'multibyte-syntax-as-symbol)
|
33467
|
220 (setq multibyte-syntax-as-symbol t)
|
41512
|
221 (set (make-local-variable 'syntax-begin-function) 'beginning-of-defun)
|
33467
|
222 (setq font-lock-defaults
|
|
223 '((lisp-font-lock-keywords
|
|
224 lisp-font-lock-keywords-1 lisp-font-lock-keywords-2)
|
60738
|
225 nil nil (("+-*/.<>=!?$%_&~^:@" . "w")) nil
|
39564
|
226 (font-lock-mark-block-function . mark-defun)
|
|
227 (font-lock-syntactic-face-function
|
|
228 . lisp-font-lock-syntactic-face-function))))
|
26682
|
229
|
|
230 (defun lisp-outline-level ()
|
|
231 "Lisp mode `outline-level' function."
|
60074
|
232 (let ((len (- (match-end 0) (match-beginning 0))))
|
|
233 (if (looking-at "(\\|;;;###autoload")
|
|
234 1000
|
|
235 len)))
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
236
|
33467
|
237 (defvar lisp-mode-shared-map
|
|
238 (let ((map (make-sparse-keymap)))
|
38315
|
239 (define-key map "\t" 'lisp-indent-line)
|
33467
|
240 (define-key map "\e\C-q" 'indent-sexp)
|
|
241 (define-key map "\177" 'backward-delete-char-untabify)
|
35638
0f77c1f47579
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
242 ;; This gets in the way when viewing a Lisp file in view-mode. As
|
0f77c1f47579
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
243 ;; long as [backspace] is mapped into DEL via the
|
0f77c1f47579
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
244 ;; function-key-map, this should remain disabled!!
|
0f77c1f47579
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
Eli Zaretskii <eliz@gnu.org>
diff
changeset
|
245 ;;;(define-key map [backspace] 'backward-delete-char-untabify)
|
33467
|
246 map)
|
213
|
247 "Keymap for commands shared by all sorts of Lisp modes.")
|
|
248
|
|
249 (defvar emacs-lisp-mode-map ()
|
|
250 "Keymap for Emacs Lisp mode.
|
32294
|
251 All commands in `lisp-mode-shared-map' are inherited by this map.")
|
213
|
252
|
|
253 (if emacs-lisp-mode-map
|
|
254 ()
|
12035
|
255 (let ((map (make-sparse-keymap "Emacs-Lisp")))
|
21116
|
256 (setq emacs-lisp-mode-map (make-sparse-keymap))
|
32294
|
257 (set-keymap-parent emacs-lisp-mode-map lisp-mode-shared-map)
|
12035
|
258 (define-key emacs-lisp-mode-map "\e\t" 'lisp-complete-symbol)
|
|
259 (define-key emacs-lisp-mode-map "\e\C-x" 'eval-defun)
|
55805
|
260 (define-key emacs-lisp-mode-map "\e\C-q" 'indent-pp-sexp)
|
12035
|
261 (define-key emacs-lisp-mode-map [menu-bar] (make-sparse-keymap))
|
|
262 (define-key emacs-lisp-mode-map [menu-bar emacs-lisp]
|
|
263 (cons "Emacs-Lisp" map))
|
|
264 (define-key map [edebug-defun]
|
|
265 '("Instrument Function for Debugging" . edebug-defun))
|
|
266 (define-key map [byte-recompile]
|
|
267 '("Byte-recompile Directory..." . byte-recompile-directory))
|
14290
|
268 (define-key map [emacs-byte-compile-and-load]
|
14719
|
269 '("Byte-compile And Load" . emacs-lisp-byte-compile-and-load))
|
14116
|
270 (define-key map [byte-compile]
|
12035
|
271 '("Byte-compile This File" . emacs-lisp-byte-compile))
|
|
272 (define-key map [separator-eval] '("--"))
|
|
273 (define-key map [eval-buffer] '("Evaluate Buffer" . eval-current-buffer))
|
|
274 (define-key map [eval-region] '("Evaluate Region" . eval-region))
|
|
275 (define-key map [eval-sexp] '("Evaluate Last S-expression" . eval-last-sexp))
|
|
276 (define-key map [separator-format] '("--"))
|
|
277 (define-key map [comment-region] '("Comment Out Region" . comment-region))
|
|
278 (define-key map [indent-region] '("Indent Region" . indent-region))
|
12218
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
diff
changeset
|
279 (define-key map [indent-line] '("Indent Line" . lisp-indent-line))
|
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
diff
changeset
|
280 (put 'eval-region 'menu-enable 'mark-active)
|
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
diff
changeset
|
281 (put 'comment-region 'menu-enable 'mark-active)
|
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
diff
changeset
|
282 (put 'indent-region 'menu-enable 'mark-active)))
|
12035
|
283
|
|
284 (defun emacs-lisp-byte-compile ()
|
|
285 "Byte compile the file containing the current buffer."
|
|
286 (interactive)
|
|
287 (if buffer-file-name
|
|
288 (byte-compile-file buffer-file-name)
|
14116
|
289 (error "The buffer must be saved in a file first")))
|
|
290
|
14719
|
291 (defun emacs-lisp-byte-compile-and-load ()
|
14116
|
292 "Byte-compile the current file (if it has changed), then load compiled code."
|
|
293 (interactive)
|
|
294 (or buffer-file-name
|
|
295 (error "The buffer must be saved in a file first"))
|
|
296 (require 'bytecomp)
|
|
297 ;; Recompile if file or buffer has changed since last compilation.
|
14719
|
298 (if (and (buffer-modified-p)
|
27809
|
299 (y-or-n-p (format "Save buffer %s first? " (buffer-name))))
|
14719
|
300 (save-buffer))
|
|
301 (let ((compiled-file-name (byte-compile-dest-file buffer-file-name)))
|
|
302 (if (file-newer-than-file-p compiled-file-name buffer-file-name)
|
|
303 (load-file compiled-file-name)
|
|
304 (byte-compile-file buffer-file-name t))))
|
213
|
305
|
25630
|
306 (defcustom emacs-lisp-mode-hook nil
|
|
307 "Hook run when entering Emacs Lisp mode."
|
27809
|
308 :options '(turn-on-eldoc-mode imenu-add-menubar-index checkdoc-minor-mode)
|
25630
|
309 :type 'hook
|
|
310 :group 'lisp)
|
|
311
|
|
312 (defcustom lisp-mode-hook nil
|
|
313 "Hook run when entering Lisp mode."
|
|
314 :options '(imenu-add-menubar-index)
|
|
315 :type 'hook
|
|
316 :group 'lisp)
|
|
317
|
|
318 (defcustom lisp-interaction-mode-hook nil
|
|
319 "Hook run when entering Lisp Interaction mode."
|
|
320 :options '(turn-on-eldoc-mode)
|
|
321 :type 'hook
|
|
322 :group 'lisp)
|
|
323
|
41332
|
324 (defun emacs-lisp-mode ()
|
213
|
325 "Major mode for editing Lisp code to run in Emacs.
|
|
326 Commands:
|
|
327 Delete converts tabs to spaces as it moves back.
|
|
328 Blank lines separate paragraphs. Semicolons start comments.
|
|
329 \\{emacs-lisp-mode-map}
|
|
330 Entry to this mode calls the value of `emacs-lisp-mode-hook'
|
|
331 if that value is non-nil."
|
41332
|
332 (interactive)
|
|
333 (kill-all-local-variables)
|
|
334 (use-local-map emacs-lisp-mode-map)
|
|
335 (set-syntax-table emacs-lisp-mode-syntax-table)
|
|
336 (setq major-mode 'emacs-lisp-mode)
|
|
337 (setq mode-name "Emacs-Lisp")
|
39564
|
338 (lisp-mode-variables)
|
41332
|
339 (setq imenu-case-fold-search nil)
|
51981
|
340 (run-mode-hooks 'emacs-lisp-mode-hook))
|
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
341 (put 'emacs-lisp-mode 'custom-mode-group 'lisp)
|
213
|
342
|
27809
|
343 (defvar lisp-mode-map
|
|
344 (let ((map (make-sparse-keymap)))
|
32294
|
345 (set-keymap-parent map lisp-mode-shared-map)
|
27809
|
346 (define-key map "\e\C-x" 'lisp-eval-defun)
|
|
347 (define-key map "\C-c\C-z" 'run-lisp)
|
|
348 map)
|
213
|
349 "Keymap for ordinary Lisp mode.
|
32294
|
350 All commands in `lisp-mode-shared-map' are inherited by this map.")
|
213
|
351
|
41332
|
352 (defun lisp-mode ()
|
213
|
353 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
|
|
354 Commands:
|
|
355 Delete converts tabs to spaces as it moves back.
|
|
356 Blank lines separate paragraphs. Semicolons start comments.
|
|
357 \\{lisp-mode-map}
|
|
358 Note that `run-lisp' may be used either to start an inferior Lisp job
|
|
359 or to switch back to an existing one.
|
|
360
|
|
361 Entry to this mode calls the value of `lisp-mode-hook'
|
|
362 if that value is non-nil."
|
41332
|
363 (interactive)
|
|
364 (kill-all-local-variables)
|
|
365 (use-local-map lisp-mode-map)
|
|
366 (setq major-mode 'lisp-mode)
|
|
367 (setq mode-name "Lisp")
|
39564
|
368 (lisp-mode-variables)
|
41332
|
369 (make-local-variable 'comment-start-skip)
|
|
370 (setq comment-start-skip
|
39564
|
371 "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\)\\(;+\\|#|\\) *")
|
41332
|
372 (make-local-variable 'font-lock-keywords-case-fold-search)
|
|
373 (setq font-lock-keywords-case-fold-search t)
|
|
374 (setq imenu-case-fold-search t)
|
|
375 (set-syntax-table lisp-mode-syntax-table)
|
51981
|
376 (run-mode-hooks 'lisp-mode-hook))
|
55773
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
diff
changeset
|
377 (put 'lisp-mode 'find-tag-default-function 'lisp-find-tag-default)
|
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
diff
changeset
|
378
|
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
diff
changeset
|
379 (defun lisp-find-tag-default ()
|
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
diff
changeset
|
380 (let ((default (find-tag-default)))
|
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
diff
changeset
|
381 (when (stringp default)
|
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
diff
changeset
|
382 (if (string-match ":+" default)
|
6010b740e1d0
(lisp-find-tag-default): Strip the package prefix from the symbol name, if any.
Sam Steingold <sds@gnu.org>
diff
changeset
|
383 (substring default (match-end 0))
|
56829
|
384 default))))
|
213
|
385
|
52288
|
386 ;; Used in old LispM code.
|
|
387 (defalias 'common-lisp-mode 'lisp-mode)
|
|
388
|
28324
|
389 ;; This will do unless inf-lisp.el is loaded.
|
|
390 (defun lisp-eval-defun (&optional and-go)
|
213
|
391 "Send the current defun to the Lisp process made by \\[run-lisp]."
|
|
392 (interactive)
|
|
393 (error "Process lisp does not exist"))
|
|
394
|
27809
|
395 (defvar lisp-interaction-mode-map
|
|
396 (let ((map (make-sparse-keymap)))
|
32294
|
397 (set-keymap-parent map lisp-mode-shared-map)
|
27809
|
398 (define-key map "\e\C-x" 'eval-defun)
|
55805
|
399 (define-key map "\e\C-q" 'indent-pp-sexp)
|
27809
|
400 (define-key map "\e\t" 'lisp-complete-symbol)
|
|
401 (define-key map "\n" 'eval-print-last-sexp)
|
|
402 map)
|
23738
|
403 "Keymap for Lisp Interaction mode.
|
32294
|
404 All commands in `lisp-mode-shared-map' are inherited by this map.")
|
213
|
405
|
41512
|
406 (defvar lisp-interaction-mode-abbrev-table lisp-mode-abbrev-table)
|
33467
|
407 (define-derived-mode lisp-interaction-mode emacs-lisp-mode "Lisp Interaction"
|
213
|
408 "Major mode for typing and evaluating Lisp forms.
|
|
409 Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression
|
|
410 before point, and prints its value into the buffer, advancing point.
|
41085
|
411 Note that printing is controlled by `eval-expression-print-length'
|
37640
|
412 and `eval-expression-print-level'.
|
213
|
413
|
|
414 Commands:
|
|
415 Delete converts tabs to spaces as it moves back.
|
|
416 Paragraphs are separated only by blank lines.
|
|
417 Semicolons start comments.
|
|
418 \\{lisp-interaction-mode-map}
|
|
419 Entry to this mode calls the value of `lisp-interaction-mode-hook'
|
41512
|
420 if that value is non-nil.")
|
213
|
421
|
248
|
422 (defun eval-print-last-sexp ()
|
38560
|
423 "Evaluate sexp before point; print value into current buffer.
|
|
424
|
|
425 Note that printing the result is controlled by the variables
|
|
426 `eval-expression-print-length' and `eval-expression-print-level',
|
|
427 which see."
|
248
|
428 (interactive)
|
422
|
429 (let ((standard-output (current-buffer)))
|
|
430 (terpri)
|
|
431 (eval-last-sexp t)
|
|
432 (terpri)))
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
433
|
38572
|
434
|
38585
|
435 (defun last-sexp-setup-props (beg end value alt1 alt2)
|
|
436 "Set up text properties for the output of `eval-last-sexp-1'.
|
|
437 BEG and END are the start and end of the output in current-buffer.
|
49598
|
438 VALUE is the Lisp value printed, ALT1 and ALT2 are strings for the
|
38585
|
439 alternative printed representations that can be displayed."
|
|
440 (let ((map (make-sparse-keymap)))
|
|
441 (define-key map "\C-m" 'last-sexp-toggle-display)
|
|
442 (define-key map [down-mouse-2] 'mouse-set-point)
|
|
443 (define-key map [mouse-2] 'last-sexp-toggle-display)
|
|
444 (add-text-properties
|
49598
|
445 beg end
|
38585
|
446 `(printed-value (,value ,alt1 ,alt2)
|
49598
|
447 mouse-face highlight
|
38585
|
448 keymap ,map
|
|
449 help-echo "RET, mouse-2: toggle abbreviated display"
|
|
450 rear-nonsticky (mouse-face keymap help-echo
|
|
451 printed-value)))))
|
|
452
|
|
453
|
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
454 (defun last-sexp-toggle-display (&optional arg)
|
38585
|
455 "Toggle between abbreviated and unabbreviated printed representations."
|
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
456 (interactive "P")
|
51290
|
457 (save-restriction
|
|
458 (widen)
|
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
459 (let ((value (get-text-property (point) 'printed-value)))
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
460 (when value
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
461 (let ((beg (or (previous-single-property-change (min (point-max) (1+ (point)))
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
462 'printed-value)
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
463 (point)))
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
464 (end (or (next-single-char-property-change (point) 'printed-value) (point)))
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
465 (standard-output (current-buffer))
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
466 (point (point)))
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
467 (delete-region beg end)
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
468 (insert (nth 1 value))
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
469 (last-sexp-setup-props beg (point)
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
470 (nth 0 value)
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
471 (nth 2 value)
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
472 (nth 1 value))
|
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
473 (goto-char (min (point-max) point)))))))
|
38572
|
474
|
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
475 (defun prin1-char (char)
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
476 "Return a string representing CHAR as a character rather than as an integer.
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
477 If CHAR is not a character, return nil."
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
478 (and (integerp char)
|
55521
|
479 (eventp char)
|
56825
|
480 (let ((c (event-basic-type char))
|
56840
|
481 (mods (event-modifiers char))
|
|
482 string)
|
56825
|
483 ;; Prevent ?A from turning into ?\S-a.
|
|
484 (if (and (memq 'shift mods)
|
56840
|
485 (zerop (logand char ?\S-\^@))
|
56825
|
486 (not (let ((case-fold-search nil))
|
|
487 (char-equal c (upcase c)))))
|
|
488 (setq c (upcase c) mods nil))
|
56840
|
489 ;; What string are we considering using?
|
|
490 (condition-case nil
|
|
491 (setq string
|
|
492 (concat
|
|
493 "?"
|
|
494 (mapconcat
|
|
495 (lambda (modif)
|
|
496 (cond ((eq modif 'super) "\\s-")
|
|
497 (t (string ?\\ (upcase (aref (symbol-name modif) 0)) ?-))))
|
|
498 mods "")
|
|
499 (cond
|
|
500 ((memq c '(?\; ?\( ?\) ?\{ ?\} ?\[ ?\] ?\" ?\' ?\\)) (string ?\\ c))
|
|
501 ((eq c 127) "\\C-?")
|
|
502 (t
|
|
503 (string c)))))
|
|
504 (error nil))
|
|
505 ;; Verify the string reads a CHAR, not to some other character.
|
|
506 ;; If it doesn't, return nil instead.
|
|
507 (and string
|
|
508 (= (car (read-from-string string)) char)
|
|
509 string))))
|
56996
|
510
|
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
511
|
27303
|
512 (defun eval-last-sexp-1 (eval-last-sexp-arg-internal)
|
213
|
513 "Evaluate sexp before point; print value in minibuffer.
|
|
514 With argument, print output into current buffer."
|
27303
|
515 (let ((standard-output (if eval-last-sexp-arg-internal (current-buffer) t)))
|
25703
|
516 (let ((value
|
|
517 (eval (let ((stab (syntax-table))
|
17066
|
518 (opoint (point))
|
19057
|
519 ignore-quotes
|
17066
|
520 expr)
|
51425
|
521 (save-excursion
|
|
522 (with-syntax-table emacs-lisp-mode-syntax-table
|
|
523 ;; If this sexp appears to be enclosed in `...'
|
|
524 ;; then ignore the surrounding quotes.
|
|
525 (setq ignore-quotes
|
|
526 (or (eq (following-char) ?\')
|
|
527 (eq (preceding-char) ?\')))
|
|
528 (forward-sexp -1)
|
|
529 ;; If we were after `?\e' (or similar case),
|
|
530 ;; use the whole thing, not just the `e'.
|
|
531 (when (eq (preceding-char) ?\\)
|
|
532 (forward-char -1)
|
|
533 (when (eq (preceding-char) ??)
|
|
534 (forward-char -1)))
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
535
|
51425
|
536 ;; Skip over `#N='s.
|
|
537 (when (eq (preceding-char) ?=)
|
|
538 (let (labeled-p)
|
|
539 (save-excursion
|
|
540 (skip-chars-backward "0-9#=")
|
|
541 (setq labeled-p (looking-at "\\(#[0-9]+=\\)+")))
|
|
542 (when labeled-p
|
|
543 (forward-sexp -1))))
|
|
544
|
|
545 (save-restriction
|
|
546 ;; vladimir@cs.ualberta.ca 30-Jul-1997: skip ` in
|
|
547 ;; `variable' so that the value is returned, not the
|
|
548 ;; name
|
|
549 (if (and ignore-quotes
|
|
550 (eq (following-char) ?`))
|
|
551 (forward-char))
|
|
552 (narrow-to-region (point-min) opoint)
|
|
553 (setq expr (read (current-buffer)))
|
|
554 ;; If it's an (interactive ...) form, it's more
|
|
555 ;; useful to show how an interactive call would
|
|
556 ;; use it.
|
|
557 (and (consp expr)
|
|
558 (eq (car expr) 'interactive)
|
|
559 (setq expr
|
|
560 (list 'call-interactively
|
|
561 (list 'quote
|
|
562 (list 'lambda
|
|
563 '(&rest args)
|
|
564 expr
|
|
565 'args)))))
|
|
566 expr)))))))
|
52208
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
567 (eval-last-sexp-print-value value))))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
568
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
569 (defun eval-last-sexp-print-value (value)
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
570 (let ((unabbreviated (let ((print-length nil) (print-level nil))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
571 (prin1-to-string value)))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
572 (print-length eval-expression-print-length)
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
573 (print-level eval-expression-print-level)
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
574 (beg (point))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
575 end)
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
576 (prog1
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
577 (prin1 value)
|
55829
|
578 (let ((str (eval-expression-print-format value)))
|
|
579 (if str (princ str)))
|
52208
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
580 (setq end (point))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
581 (when (and (bufferp standard-output)
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
582 (or (not (null print-length))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
583 (not (null print-level)))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
584 (not (string= unabbreviated
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
585 (buffer-substring-no-properties beg end))))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
586 (last-sexp-setup-props beg end value
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
587 unabbreviated
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
588 (buffer-substring-no-properties beg end))
|
4a7f0e1b3678
(eval-last-sexp-print-value): New subroutine, broken out of eval-last-sexp-1.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
589 ))))
|
38572
|
590
|
213
|
591
|
56686
|
592 (defvar eval-last-sexp-fake-value (make-symbol "t"))
|
|
593
|
27303
|
594 (defun eval-last-sexp (eval-last-sexp-arg-internal)
|
|
595 "Evaluate sexp before point; print value in minibuffer.
|
38169
|
596 Interactively, with prefix argument, print output into current buffer."
|
27303
|
597 (interactive "P")
|
|
598 (if (null eval-expression-debug-on-error)
|
|
599 (eval-last-sexp-1 eval-last-sexp-arg-internal)
|
56686
|
600 (let ((old-value eval-last-sexp-fake-value) new-value value)
|
27303
|
601 (let ((debug-on-error old-value))
|
|
602 (setq value (eval-last-sexp-1 eval-last-sexp-arg-internal))
|
|
603 (setq new-value debug-on-error))
|
|
604 (unless (eq old-value new-value)
|
|
605 (setq debug-on-error new-value))
|
|
606 value)))
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
607
|
25434
|
608 (defun eval-defun-1 (form)
|
56003
|
609 "Treat some expressions specially.
|
|
610 Reset the `defvar' and `defcustom' variables to the initial value.
|
|
611 Reinitialize the face according to the `defface' specification."
|
32294
|
612 ;; The code in edebug-defun should be consistent with this, but not
|
|
613 ;; the same, since this gets a macroexpended form.
|
42235
|
614 (cond ((not (listp form))
|
|
615 form)
|
|
616 ((and (eq (car form) 'defvar)
|
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
617 (cdr-safe (cdr-safe form))
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
618 (boundp (cadr form)))
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
619 ;; Force variable to be re-set.
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
620 `(progn (defvar ,(nth 1 form) nil ,@(nthcdr 3 form))
|
59755
c4bcae7d90b4
(eval-defun-1): Make sure `defvar' always sets the default value.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
621 (setq-default ,(nth 1 form) ,(nth 2 form))))
|
28324
|
622 ;; `defcustom' is now macroexpanded to
|
|
623 ;; `custom-declare-variable' with a quoted value arg.
|
27809
|
624 ((and (eq (car form) 'custom-declare-variable)
|
|
625 (default-boundp (eval (nth 1 form))))
|
25434
|
626 ;; Force variable to be bound.
|
28324
|
627 (set-default (eval (nth 1 form)) (eval (nth 1 (nth 2 form))))
|
25434
|
628 form)
|
56003
|
629 ;; `defface' is macroexpanded to `custom-declare-face'.
|
|
630 ((eq (car form) 'custom-declare-face)
|
|
631 ;; Reset the face.
|
|
632 (setq face-new-frame-defaults
|
|
633 (assq-delete-all (eval (nth 1 form)) face-new-frame-defaults))
|
63638
|
634 (put (eval (nth 1 form)) 'face-defface-spec nil)
|
|
635 ;; Setting `customized-face' to the new spec after calling
|
|
636 ;; the form, but preserving the old saved spec in `saved-face',
|
|
637 ;; imitates the situation when the new face spec is set
|
|
638 ;; temporarily for the current session in the customize
|
|
639 ;; buffer, thus allowing `face-user-default-spec' to use the
|
|
640 ;; new customized spec instead of the saved spec.
|
|
641 ;; Resetting `saved-face' temporarily to nil is needed to let
|
|
642 ;; `defface' change the spec, regardless of a saved spec.
|
|
643 (prog1 `(prog1 ,form
|
63988
|
644 (put ,(nth 1 form) 'saved-face
|
63638
|
645 ',(get (eval (nth 1 form)) 'saved-face))
|
63988
|
646 (put ,(nth 1 form) 'customized-face
|
|
647 ,(nth 2 form)))
|
63638
|
648 (put (eval (nth 1 form)) 'saved-face nil)))
|
25434
|
649 ((eq (car form) 'progn)
|
|
650 (cons 'progn (mapcar 'eval-defun-1 (cdr form))))
|
|
651 (t form)))
|
|
652
|
30055
|
653 (defun eval-defun-2 ()
|
248
|
654 "Evaluate defun that point is in or before.
|
24895
|
655 The value is displayed in the minibuffer.
|
|
656 If the current defun is actually a call to `defvar',
|
|
657 then reset the variable using the initial value expression
|
|
658 even if the variable already has some other value.
|
|
659 \(Normally `defvar' does not change the variable's value
|
|
660 if it already has a value.\)
|
|
661
|
23388
|
662 With argument, insert value in current buffer after the defun.
|
|
663 Return the result of evaluation."
|
213
|
664 (interactive "P")
|
25703
|
665 (let ((debug-on-error eval-expression-debug-on-error)
|
|
666 (print-length eval-expression-print-length)
|
|
667 (print-level eval-expression-print-level))
|
|
668 (save-excursion
|
|
669 ;; Arrange for eval-region to "read" the (possibly) altered form.
|
|
670 ;; eval-region handles recording which file defines a function or
|
|
671 ;; variable. Re-written using `apply' to avoid capturing
|
|
672 ;; variables like `end'.
|
|
673 (apply
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
674 #'eval-region
|
30055
|
675 (let ((standard-output t)
|
25703
|
676 beg end form)
|
|
677 ;; Read the form from the buffer, and record where it ends.
|
|
678 (save-excursion
|
|
679 (end-of-defun)
|
|
680 (beginning-of-defun)
|
|
681 (setq beg (point))
|
|
682 (setq form (read (current-buffer)))
|
|
683 (setq end (point)))
|
56003
|
684 ;; Alter the form if necessary.
|
25703
|
685 (setq form (eval-defun-1 (macroexpand form)))
|
|
686 (list beg end standard-output
|
|
687 `(lambda (ignore)
|
|
688 ;; Skipping to the end of the specified region
|
|
689 ;; will make eval-region return.
|
|
690 (goto-char ,end)
|
|
691 ',form))))))
|
25107
|
692 ;; The result of evaluation has been put onto VALUES. So return it.
|
|
693 (car values))
|
27303
|
694
|
30055
|
695 (defun eval-defun (edebug-it)
|
|
696 "Evaluate the top-level form containing point, or after point.
|
|
697
|
40409
|
698 If the current defun is actually a call to `defvar' or `defcustom',
|
|
699 evaluating it this way resets the variable using its initial value
|
|
700 expression even if the variable already has some other value.
|
|
701 \(Normally `defvar' and `defcustom' do not alter the value if there
|
|
702 already is one.)
|
30055
|
703
|
|
704 With a prefix argument, instrument the code for Edebug.
|
|
705
|
|
706 If acting on a `defun' for FUNCTION, and the function was
|
|
707 instrumented, `Edebug: FUNCTION' is printed in the minibuffer. If not
|
|
708 instrumented, just FUNCTION is printed.
|
27303
|
709
|
30055
|
710 If not acting on a `defun', the result of evaluation is displayed in
|
38560
|
711 the minibuffer. This display is controlled by the variables
|
|
712 `eval-expression-print-length' and `eval-expression-print-level',
|
|
713 which see."
|
27303
|
714 (interactive "P")
|
30055
|
715 (cond (edebug-it
|
|
716 (require 'edebug)
|
|
717 (eval-defun (not edebug-all-defs)))
|
|
718 (t
|
|
719 (if (null eval-expression-debug-on-error)
|
|
720 (eval-defun-2)
|
|
721 (let ((old-value (make-symbol "t")) new-value value)
|
|
722 (let ((debug-on-error old-value))
|
|
723 (setq value (eval-defun-2))
|
|
724 (setq new-value debug-on-error))
|
|
725 (unless (eq old-value new-value)
|
|
726 (setq debug-on-error new-value))
|
|
727 value)))))
|
50503
7c83c5770cb6
(last-sexp-toggle-display): At end of buffer, just call `newline'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
728
|
63764
|
729 ;; Used for comment-indent-function in Lisp modes.
|
213
|
730 (defun lisp-comment-indent ()
|
|
731 (if (looking-at "\\s<\\s<\\s<")
|
|
732 (current-column)
|
|
733 (if (looking-at "\\s<\\s<")
|
17308
|
734 (let ((tem (or (calculate-lisp-indent) (current-column))))
|
213
|
735 (if (listp tem) (car tem) tem))
|
|
736 (skip-chars-backward " \t")
|
|
737 (max (if (bolp) 0 (1+ (current-column)))
|
|
738 comment-column))))
|
|
739
|
40790
|
740 ;; This function just forces a more costly detection of comments (using
|
|
741 ;; parse-partial-sexp from beginning-of-defun). I.e. It avoids the problem of
|
|
742 ;; taking a `;' inside a string started on another line for a comment starter.
|
54501
|
743 ;; Note: `newcomment' gets it right now since we set comment-use-global-state
|
|
744 ;; so we could get rid of it. -stef
|
20333
|
745 (defun lisp-mode-auto-fill ()
|
|
746 (if (> (current-column) (current-fill-column))
|
|
747 (if (save-excursion
|
41512
|
748 (nth 4 (syntax-ppss (point))))
|
20333
|
749 (do-auto-fill)
|
41512
|
750 (unless (and (boundp 'comment-auto-fill-only-comments)
|
|
751 comment-auto-fill-only-comments)
|
|
752 (let ((comment-start nil) (comment-start-skip nil))
|
|
753 (do-auto-fill))))))
|
20333
|
754
|
37991
|
755 (defvar lisp-indent-offset nil
|
|
756 "If non-nil, indent second line of expressions that many more columns.")
|
27809
|
757 (defvar lisp-indent-function 'lisp-indent-function)
|
213
|
758
|
|
759 (defun lisp-indent-line (&optional whole-exp)
|
|
760 "Indent current line as Lisp code.
|
|
761 With argument, indent any additional lines of the same expression
|
|
762 rigidly along with this one."
|
|
763 (interactive "P")
|
39564
|
764 (let ((indent (calculate-lisp-indent)) shift-amt end
|
|
765 (pos (- (point-max) (point)))
|
|
766 (beg (progn (beginning-of-line) (point))))
|
213
|
767 (skip-chars-forward " \t")
|
17308
|
768 (if (or (null indent) (looking-at "\\s<\\s<\\s<"))
|
|
769 ;; Don't alter indentation of a ;;; comment line
|
|
770 ;; or a line that starts in a string.
|
677
|
771 (goto-char (- (point-max) pos))
|
213
|
772 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<")))
|
|
773 ;; Single-semicolon comment lines should be indented
|
|
774 ;; as comment lines, not as code.
|
|
775 (progn (indent-for-comment) (forward-char -1))
|
|
776 (if (listp indent) (setq indent (car indent)))
|
|
777 (setq shift-amt (- indent (current-column)))
|
|
778 (if (zerop shift-amt)
|
|
779 nil
|
|
780 (delete-region beg (point))
|
|
781 (indent-to indent)))
|
|
782 ;; If initial point was within line's indentation,
|
|
783 ;; position after the indentation. Else stay at same point in text.
|
|
784 (if (> (- (point-max) pos) (point))
|
|
785 (goto-char (- (point-max) pos)))
|
|
786 ;; If desired, shift remaining lines of expression the same amount.
|
|
787 (and whole-exp (not (zerop shift-amt))
|
|
788 (save-excursion
|
|
789 (goto-char beg)
|
|
790 (forward-sexp 1)
|
|
791 (setq end (point))
|
|
792 (goto-char beg)
|
|
793 (forward-line 1)
|
|
794 (setq beg (point))
|
|
795 (> end beg))
|
|
796 (indent-code-rigidly beg end shift-amt)))))
|
|
797
|
9424
|
798 (defvar calculate-lisp-indent-last-sexp)
|
9423
|
799
|
213
|
800 (defun calculate-lisp-indent (&optional parse-start)
|
|
801 "Return appropriate indentation for current line as Lisp code.
|
|
802 In usual case returns an integer: the column to indent to.
|
17308
|
803 If the value is nil, that means don't change the indentation
|
|
804 because the line starts inside a string.
|
|
805
|
|
806 The value can also be a list of the form (COLUMN CONTAINING-SEXP-START).
|
213
|
807 This means that following lines at the same level of indentation
|
17308
|
808 should not necessarily be indented the same as this line.
|
|
809 Then COLUMN is the column to indent to, and CONTAINING-SEXP-START
|
|
810 is the buffer position of the start of the containing expression."
|
213
|
811 (save-excursion
|
|
812 (beginning-of-line)
|
|
813 (let ((indent-point (point))
|
|
814 state paren-depth
|
|
815 ;; setting this to a number inhibits calling hook
|
|
816 (desired-indent nil)
|
|
817 (retry t)
|
9423
|
818 calculate-lisp-indent-last-sexp containing-sexp)
|
213
|
819 (if parse-start
|
|
820 (goto-char parse-start)
|
|
821 (beginning-of-defun))
|
|
822 ;; Find outermost containing sexp
|
|
823 (while (< (point) indent-point)
|
|
824 (setq state (parse-partial-sexp (point) indent-point 0)))
|
|
825 ;; Find innermost containing sexp
|
|
826 (while (and retry
|
|
827 state
|
|
828 (> (setq paren-depth (elt state 0)) 0))
|
|
829 (setq retry nil)
|
9423
|
830 (setq calculate-lisp-indent-last-sexp (elt state 2))
|
213
|
831 (setq containing-sexp (elt state 1))
|
|
832 ;; Position following last unclosed open.
|
|
833 (goto-char (1+ containing-sexp))
|
|
834 ;; Is there a complete sexp since then?
|
9423
|
835 (if (and calculate-lisp-indent-last-sexp
|
|
836 (> calculate-lisp-indent-last-sexp (point)))
|
213
|
837 ;; Yes, but is there a containing sexp after that?
|
9423
|
838 (let ((peek (parse-partial-sexp calculate-lisp-indent-last-sexp
|
|
839 indent-point 0)))
|
213
|
840 (if (setq retry (car (cdr peek))) (setq state peek)))))
|
|
841 (if retry
|
|
842 nil
|
|
843 ;; Innermost containing sexp found
|
|
844 (goto-char (1+ containing-sexp))
|
9423
|
845 (if (not calculate-lisp-indent-last-sexp)
|
213
|
846 ;; indent-point immediately follows open paren.
|
|
847 ;; Don't call hook.
|
|
848 (setq desired-indent (current-column))
|
|
849 ;; Find the start of first element of containing sexp.
|
9423
|
850 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
|
213
|
851 (cond ((looking-at "\\s(")
|
|
852 ;; First element of containing sexp is a list.
|
|
853 ;; Indent under that list.
|
|
854 )
|
|
855 ((> (save-excursion (forward-line 1) (point))
|
9423
|
856 calculate-lisp-indent-last-sexp)
|
213
|
857 ;; This is the first line to start within the containing sexp.
|
|
858 ;; It's almost certainly a function call.
|
9423
|
859 (if (= (point) calculate-lisp-indent-last-sexp)
|
213
|
860 ;; Containing sexp has nothing before this line
|
|
861 ;; except the first element. Indent under that element.
|
|
862 nil
|
|
863 ;; Skip the first element, find start of second (the first
|
|
864 ;; argument of the function call) and indent under.
|
|
865 (progn (forward-sexp 1)
|
9423
|
866 (parse-partial-sexp (point)
|
|
867 calculate-lisp-indent-last-sexp
|
|
868 0 t)))
|
213
|
869 (backward-prefix-chars))
|
|
870 (t
|
9423
|
871 ;; Indent beneath first sexp on same line as
|
27809
|
872 ;; `calculate-lisp-indent-last-sexp'. Again, it's
|
9423
|
873 ;; almost certainly a function call.
|
|
874 (goto-char calculate-lisp-indent-last-sexp)
|
213
|
875 (beginning-of-line)
|
9423
|
876 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp
|
|
877 0 t)
|
213
|
878 (backward-prefix-chars)))))
|
|
879 ;; Point is at the point to indent under unless we are inside a string.
|
3591
|
880 ;; Call indentation hook except when overridden by lisp-indent-offset
|
213
|
881 ;; or if the desired indentation has already been computed.
|
|
882 (let ((normal-indent (current-column)))
|
|
883 (cond ((elt state 3)
|
|
884 ;; Inside a string, don't change indentation.
|
17308
|
885 nil)
|
213
|
886 ((and (integerp lisp-indent-offset) containing-sexp)
|
|
887 ;; Indent by constant offset
|
|
888 (goto-char containing-sexp)
|
|
889 (+ (current-column) lisp-indent-offset))
|
|
890 (desired-indent)
|
|
891 ((and (boundp 'lisp-indent-function)
|
|
892 lisp-indent-function
|
|
893 (not retry))
|
|
894 (or (funcall lisp-indent-function indent-point state)
|
|
895 normal-indent))
|
|
896 (t
|
214
|
897 normal-indent))))))
|
213
|
898
|
|
899 (defun lisp-indent-function (indent-point state)
|
41509
|
900 "This function is the normal value of the variable `lisp-indent-function'.
|
|
901 It is used when indenting a line within a function call, to see if the
|
|
902 called function says anything special about how to indent the line.
|
|
903
|
|
904 INDENT-POINT is the position where the user typed TAB, or equivalent.
|
|
905 Point is located at the point to indent under (for default indentation);
|
|
906 STATE is the `parse-partial-sexp' state for that position.
|
|
907
|
|
908 If the current line is in a call to a Lisp function
|
|
909 which has a non-nil property `lisp-indent-function',
|
|
910 that specifies how to do the indentation. The property value can be
|
|
911 * `defun', meaning indent `defun'-style;
|
|
912 * an integer N, meaning indent the first N arguments specially
|
59846
|
913 like ordinary function arguments and then indent any further
|
|
914 arguments like a body;
|
41509
|
915 * a function to call just as this function was called.
|
59848
|
916 If that function returns nil, that means it doesn't specify
|
|
917 the indentation.
|
41509
|
918
|
|
919 This function also returns nil meaning don't specify the indentation."
|
213
|
920 (let ((normal-indent (current-column)))
|
|
921 (goto-char (1+ (elt state 1)))
|
9423
|
922 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
|
213
|
923 (if (and (elt state 2)
|
|
924 (not (looking-at "\\sw\\|\\s_")))
|
46159
|
925 ;; car of form doesn't seem to be a symbol
|
213
|
926 (progn
|
|
927 (if (not (> (save-excursion (forward-line 1) (point))
|
9423
|
928 calculate-lisp-indent-last-sexp))
|
51261
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
929 (progn (goto-char calculate-lisp-indent-last-sexp)
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
930 (beginning-of-line)
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
931 (parse-partial-sexp (point)
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
932 calculate-lisp-indent-last-sexp 0 t)))
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
933 ;; Indent under the list or under the first sexp on the same
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
934 ;; line as calculate-lisp-indent-last-sexp. Note that first
|
a3a1d78e827e
(lisp-font-lock-syntactic-face-function): Don't infinite lop at bob.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
935 ;; thing on that line has to be complete sexp since we are
|
9423
|
936 ;; inside the innermost containing sexp.
|
213
|
937 (backward-prefix-chars)
|
|
938 (current-column))
|
|
939 (let ((function (buffer-substring (point)
|
|
940 (progn (forward-sexp 1) (point))))
|
|
941 method)
|
3638
|
942 (setq method (or (get (intern-soft function) 'lisp-indent-function)
|
|
943 (get (intern-soft function) 'lisp-indent-hook)))
|
213
|
944 (cond ((or (eq method 'defun)
|
|
945 (and (null method)
|
|
946 (> (length function) 3)
|
|
947 (string-match "\\`def" function)))
|
|
948 (lisp-indent-defform state indent-point))
|
|
949 ((integerp method)
|
|
950 (lisp-indent-specform method state
|
|
951 indent-point normal-indent))
|
|
952 (method
|
59848
|
953 (funcall method indent-point state)))))))
|
213
|
954
|
16687
|
955 (defvar lisp-body-indent 2
|
2933
|
956 "Number of columns to indent the second line of a `(def...)' form.")
|
213
|
957
|
|
958 (defun lisp-indent-specform (count state indent-point normal-indent)
|
|
959 (let ((containing-form-start (elt state 1))
|
|
960 (i count)
|
|
961 body-indent containing-form-column)
|
|
962 ;; Move to the start of containing form, calculate indentation
|
|
963 ;; to use for non-distinguished forms (> count), and move past the
|
|
964 ;; function symbol. lisp-indent-function guarantees that there is at
|
|
965 ;; least one word or symbol character following open paren of containing
|
|
966 ;; form.
|
|
967 (goto-char containing-form-start)
|
|
968 (setq containing-form-column (current-column))
|
|
969 (setq body-indent (+ lisp-body-indent containing-form-column))
|
|
970 (forward-char 1)
|
|
971 (forward-sexp 1)
|
|
972 ;; Now find the start of the last form.
|
|
973 (parse-partial-sexp (point) indent-point 1 t)
|
|
974 (while (and (< (point) indent-point)
|
|
975 (condition-case ()
|
|
976 (progn
|
|
977 (setq count (1- count))
|
|
978 (forward-sexp 1)
|
|
979 (parse-partial-sexp (point) indent-point 1 t))
|
|
980 (error nil))))
|
|
981 ;; Point is sitting on first character of last (or count) sexp.
|
|
982 (if (> count 0)
|
|
983 ;; A distinguished form. If it is the first or second form use double
|
|
984 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound
|
|
985 ;; to 2 (the default), this just happens to work the same with if as
|
|
986 ;; the older code, but it makes unwind-protect, condition-case,
|
|
987 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older,
|
|
988 ;; less hacked, behavior can be obtained by replacing below with
|
|
989 ;; (list normal-indent containing-form-start).
|
|
990 (if (<= (- i count) 1)
|
|
991 (list (+ containing-form-column (* 2 lisp-body-indent))
|
|
992 containing-form-start)
|
|
993 (list normal-indent containing-form-start))
|
|
994 ;; A non-distinguished form. Use body-indent if there are no
|
|
995 ;; distinguished forms and this is the first undistinguished form,
|
|
996 ;; or if this is the first undistinguished form and the preceding
|
|
997 ;; distinguished form has indentation at least as great as body-indent.
|
|
998 (if (or (and (= i 0) (= count 0))
|
|
999 (and (= count 0) (<= body-indent normal-indent)))
|
|
1000 body-indent
|
|
1001 normal-indent))))
|
|
1002
|
|
1003 (defun lisp-indent-defform (state indent-point)
|
|
1004 (goto-char (car (cdr state)))
|
|
1005 (forward-line 1)
|
|
1006 (if (> (point) (car (cdr (cdr state))))
|
|
1007 (progn
|
|
1008 (goto-char (car (cdr state)))
|
|
1009 (+ lisp-body-indent (current-column)))))
|
|
1010
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
1011
|
213
|
1012 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented
|
|
1013 ;; like defun if the first form is placed on the next line, otherwise
|
|
1014 ;; it is indented like any other form (i.e. forms line up under first).
|
|
1015
|
|
1016 (put 'lambda 'lisp-indent-function 'defun)
|
|
1017 (put 'autoload 'lisp-indent-function 'defun)
|
|
1018 (put 'progn 'lisp-indent-function 0)
|
|
1019 (put 'prog1 'lisp-indent-function 1)
|
|
1020 (put 'prog2 'lisp-indent-function 2)
|
|
1021 (put 'save-excursion 'lisp-indent-function 0)
|
|
1022 (put 'save-window-excursion 'lisp-indent-function 0)
|
12218
a4f383dd5adb
Put mark-active for menu-enable property on eval-region, comment-region, and indent-region symbols.
Simon Marshall <simon@gnu.org>
diff
changeset
|
1023 (put 'save-selected-window 'lisp-indent-function 0)
|
213
|
1024 (put 'save-restriction 'lisp-indent-function 0)
|
1163
|
1025 (put 'save-match-data 'lisp-indent-function 0)
|
16354
|
1026 (put 'save-current-buffer 'lisp-indent-function 0)
|
16406
|
1027 (put 'with-current-buffer 'lisp-indent-function 1)
|
16563
|
1028 (put 'combine-after-change-calls 'lisp-indent-function 0)
|
16354
|
1029 (put 'with-output-to-string 'lisp-indent-function 0)
|
16360
|
1030 (put 'with-temp-file 'lisp-indent-function 1)
|
16380
|
1031 (put 'with-temp-buffer 'lisp-indent-function 0)
|
23738
|
1032 (put 'with-temp-message 'lisp-indent-function 1)
|
27300
|
1033 (put 'with-syntax-table 'lisp-indent-function 1)
|
213
|
1034 (put 'let 'lisp-indent-function 1)
|
|
1035 (put 'let* 'lisp-indent-function 1)
|
|
1036 (put 'while 'lisp-indent-function 1)
|
|
1037 (put 'if 'lisp-indent-function 2)
|
41702
|
1038 (put 'read-if 'lisp-indent-function 2)
|
213
|
1039 (put 'catch 'lisp-indent-function 1)
|
|
1040 (put 'condition-case 'lisp-indent-function 2)
|
|
1041 (put 'unwind-protect 'lisp-indent-function 1)
|
|
1042 (put 'with-output-to-temp-buffer 'lisp-indent-function 1)
|
16381
|
1043 (put 'eval-after-load 'lisp-indent-function 1)
|
27484
|
1044 (put 'dolist 'lisp-indent-function 1)
|
|
1045 (put 'dotimes 'lisp-indent-function 1)
|
|
1046 (put 'when 'lisp-indent-function 1)
|
|
1047 (put 'unless 'lisp-indent-function 1)
|
213
|
1048
|
|
1049 (defun indent-sexp (&optional endpos)
|
|
1050 "Indent each line of the list starting just after point.
|
|
1051 If optional arg ENDPOS is given, indent each line, stopping when
|
|
1052 ENDPOS is encountered."
|
|
1053 (interactive)
|
727
|
1054 (let ((indent-stack (list nil))
|
|
1055 (next-depth 0)
|
10594
|
1056 ;; If ENDPOS is non-nil, use nil as STARTING-POINT
|
|
1057 ;; so that calculate-lisp-indent will find the beginning of
|
|
1058 ;; the defun we are in.
|
|
1059 ;; If ENDPOS is nil, it is safe not to scan before point
|
|
1060 ;; since every line we indent is more deeply nested than point is.
|
|
1061 (starting-point (if endpos nil (point)))
|
727
|
1062 (last-point (point))
|
|
1063 last-depth bol outer-loop-done inner-loop-done state this-indent)
|
10594
|
1064 (or endpos
|
|
1065 ;; Get error now if we don't have a complete sexp after point.
|
|
1066 (save-excursion (forward-sexp 1)))
|
213
|
1067 (save-excursion
|
|
1068 (setq outer-loop-done nil)
|
|
1069 (while (if endpos (< (point) endpos)
|
|
1070 (not outer-loop-done))
|
|
1071 (setq last-depth next-depth
|
|
1072 inner-loop-done nil)
|
|
1073 ;; Parse this line so we can learn the state
|
|
1074 ;; to indent the next line.
|
|
1075 ;; This inner loop goes through only once
|
|
1076 ;; unless a line ends inside a string.
|
|
1077 (while (and (not inner-loop-done)
|
|
1078 (not (setq outer-loop-done (eobp))))
|
|
1079 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
|
|
1080 nil nil state))
|
|
1081 (setq next-depth (car state))
|
|
1082 ;; If the line contains a comment other than the sort
|
|
1083 ;; that is indented like code,
|
|
1084 ;; indent it now with indent-for-comment.
|
|
1085 ;; Comments indented like code are right already.
|
|
1086 ;; In any case clear the in-comment flag in the state
|
|
1087 ;; because parse-partial-sexp never sees the newlines.
|
|
1088 (if (car (nthcdr 4 state))
|
|
1089 (progn (indent-for-comment)
|
|
1090 (end-of-line)
|
|
1091 (setcar (nthcdr 4 state) nil)))
|
|
1092 ;; If this line ends inside a string,
|
|
1093 ;; go straight to next line, remaining within the inner loop,
|
|
1094 ;; and turn off the \-flag.
|
|
1095 (if (car (nthcdr 3 state))
|
|
1096 (progn
|
|
1097 (forward-line 1)
|
|
1098 (setcar (nthcdr 5 state) nil))
|
|
1099 (setq inner-loop-done t)))
|
|
1100 (and endpos
|
727
|
1101 (<= next-depth 0)
|
|
1102 (progn
|
32294
|
1103 (setq indent-stack (nconc indent-stack
|
|
1104 (make-list (- next-depth) nil))
|
727
|
1105 last-depth (- last-depth next-depth)
|
|
1106 next-depth 0)))
|
10594
|
1107 (or outer-loop-done endpos
|
213
|
1108 (setq outer-loop-done (<= next-depth 0)))
|
|
1109 (if outer-loop-done
|
3241
6c9b5f6dca70
(indent-sexp): Even if outer-loop-done is t, still move down one line.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
1110 (forward-line 1)
|
213
|
1111 (while (> last-depth next-depth)
|
|
1112 (setq indent-stack (cdr indent-stack)
|
|
1113 last-depth (1- last-depth)))
|
|
1114 (while (< last-depth next-depth)
|
|
1115 (setq indent-stack (cons nil indent-stack)
|
|
1116 last-depth (1+ last-depth)))
|
|
1117 ;; Now go to the next line and indent it according
|
|
1118 ;; to what we learned from parsing the previous one.
|
|
1119 (forward-line 1)
|
|
1120 (setq bol (point))
|
|
1121 (skip-chars-forward " \t")
|
|
1122 ;; But not if the line is blank, or just a comment
|
|
1123 ;; (except for double-semi comments; indent them as usual).
|
|
1124 (if (or (eobp) (looking-at "\\s<\\|\n"))
|
|
1125 nil
|
|
1126 (if (and (car indent-stack)
|
|
1127 (>= (car indent-stack) 0))
|
|
1128 (setq this-indent (car indent-stack))
|
|
1129 (let ((val (calculate-lisp-indent
|
|
1130 (if (car indent-stack) (- (car indent-stack))
|
727
|
1131 starting-point))))
|
17308
|
1132 (if (null val)
|
|
1133 (setq this-indent val)
|
|
1134 (if (integerp val)
|
|
1135 (setcar indent-stack
|
|
1136 (setq this-indent val))
|
|
1137 (setcar indent-stack (- (car (cdr val))))
|
|
1138 (setq this-indent (car val))))))
|
|
1139 (if (and this-indent (/= (current-column) this-indent))
|
213
|
1140 (progn (delete-region bol (point))
|
|
1141 (indent-to this-indent)))))
|
|
1142 (or outer-loop-done
|
|
1143 (setq outer-loop-done (= (point) last-point))
|
|
1144 (setq last-point (point)))))))
|
|
1145
|
|
1146 (defun lisp-indent-region (start end)
|
27809
|
1147 "Indent every line whose first char is between START and END inclusive."
|
213
|
1148 (save-excursion
|
|
1149 (let ((endmark (copy-marker end)))
|
10594
|
1150 (goto-char start)
|
|
1151 (and (bolp) (not (eolp))
|
|
1152 (lisp-indent-line))
|
213
|
1153 (indent-sexp endmark)
|
|
1154 (set-marker endmark nil))))
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
1155
|
55805
|
1156 (defun indent-pp-sexp (&optional arg)
|
59571
|
1157 "Indent each line of the list starting just after point, or prettyprint it.
|
|
1158 A prefix argument specifies pretty-printing."
|
55805
|
1159 (interactive "P")
|
|
1160 (if arg
|
|
1161 (save-excursion
|
|
1162 (save-restriction
|
|
1163 (narrow-to-region (point) (progn (forward-sexp 1) (point)))
|
|
1164 (pp-buffer)
|
|
1165 (goto-char (point-max))
|
|
1166 (if (eq (char-before) ?\n)
|
|
1167 (delete-char -1)))))
|
|
1168 (indent-sexp))
|
|
1169
|
1865
|
1170 ;;;; Lisp paragraph filling commands.
|
|
1171
|
50001
|
1172 (defcustom emacs-lisp-docstring-fill-column 65
|
|
1173 "Value of `fill-column' to use when filling a docstring.
|
|
1174 Any non-integer value means do not use a different value of
|
|
1175 `fill-column' when filling docstrings."
|
|
1176 :type '(choice (integer)
|
|
1177 (const :tag "Use the current `fill-column'" t))
|
|
1178 :group 'lisp)
|
|
1179
|
1865
|
1180 (defun lisp-fill-paragraph (&optional justify)
|
50001
|
1181 "Like \\[fill-paragraph], but handle Emacs Lisp comments and docstrings.
|
1865
|
1182 If any of the current line is a comment, fill the comment or the
|
|
1183 paragraph of it that point is in, preserving the comment's indentation
|
|
1184 and initial semicolons."
|
|
1185 (interactive "P")
|
48127
|
1186 (or (fill-comment-paragraph justify)
|
57401
|
1187 ;; Since fill-comment-paragraph returned nil, that means we're not in
|
|
1188 ;; a comment: Point is on a program line; we are interested
|
50001
|
1189 ;; particularly in docstring lines.
|
|
1190 ;;
|
|
1191 ;; We bind `paragraph-start' and `paragraph-separate' temporarily. They
|
|
1192 ;; are buffer-local, but we avoid changing them so that they can be set
|
|
1193 ;; to make `forward-paragraph' and friends do something the user wants.
|
|
1194 ;;
|
|
1195 ;; `paragraph-start': The `(' in the character alternative and the
|
|
1196 ;; left-singlequote plus `(' sequence after the \\| alternative prevent
|
|
1197 ;; sexps and backquoted sexps that follow a docstring from being filled
|
|
1198 ;; with the docstring. This setting has the consequence of inhibiting
|
|
1199 ;; filling many program lines that are not docstrings, which is sensible,
|
|
1200 ;; because the user probably asked to fill program lines by accident, or
|
|
1201 ;; expecting indentation (perhaps we should try to do indenting in that
|
|
1202 ;; case). The `;' and `:' stop the paragraph being filled at following
|
|
1203 ;; comment lines and at keywords (e.g., in `defcustom'). Left parens are
|
|
1204 ;; escaped to keep font-locking, filling, & paren matching in the source
|
|
1205 ;; file happy.
|
|
1206 ;;
|
|
1207 ;; `paragraph-separate': A clever regexp distinguishes the first line of
|
|
1208 ;; a docstring and identifies it as a paragraph separator, so that it
|
|
1209 ;; won't be filled. (Since the first line of documentation stands alone
|
|
1210 ;; in some contexts, filling should not alter the contents the author has
|
|
1211 ;; chosen.) Only the first line of a docstring begins with whitespace
|
|
1212 ;; and a quotation mark and ends with a period or (rarely) a comma.
|
|
1213 ;;
|
|
1214 ;; The `fill-column' is temporarily bound to
|
|
1215 ;; `emacs-lisp-docstring-fill-column' if that value is an integer.
|
48127
|
1216 (let ((paragraph-start (concat paragraph-start
|
57401
|
1217 "\\|\\s-*\\([(;:\"]\\|`(\\|#'(\\)"))
|
48127
|
1218 (paragraph-separate
|
50001
|
1219 (concat paragraph-separate "\\|\\s-*\".*[,\\.]$"))
|
|
1220 (fill-column (if (integerp emacs-lisp-docstring-fill-column)
|
|
1221 emacs-lisp-docstring-fill-column
|
|
1222 fill-column)))
|
48127
|
1223 (fill-paragraph justify))
|
|
1224 ;; Never return nil.
|
|
1225 t))
|
35279
139991123d49
(lisp-mode-shared-map): Bind `backspace' to `backward-delete-char-untabify'.
Sam Steingold <sds@gnu.org>
diff
changeset
|
1226
|
213
|
1227 (defun indent-code-rigidly (start end arg &optional nochange-regexp)
|
|
1228 "Indent all lines of code, starting in the region, sideways by ARG columns.
|
|
1229 Does not affect lines starting inside comments or strings, assuming that
|
|
1230 the start of the region is not inside them.
|
|
1231
|
|
1232 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP.
|
|
1233 The last is a regexp which, if matched at the beginning of a line,
|
|
1234 means don't indent that line."
|
|
1235 (interactive "r\np")
|
|
1236 (let (state)
|
|
1237 (save-excursion
|
|
1238 (goto-char end)
|
|
1239 (setq end (point-marker))
|
|
1240 (goto-char start)
|
|
1241 (or (bolp)
|
|
1242 (setq state (parse-partial-sexp (point)
|
|
1243 (progn
|
|
1244 (forward-line 1) (point))
|
|
1245 nil nil state)))
|
|
1246 (while (< (point) end)
|
|
1247 (or (car (nthcdr 3 state))
|
|
1248 (and nochange-regexp
|
|
1249 (looking-at nochange-regexp))
|
|
1250 ;; If line does not start in string, indent it
|
|
1251 (let ((indent (current-indentation)))
|
|
1252 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
|
|
1253 (or (eolp)
|
|
1254 (indent-to (max 0 (+ indent arg)) 0))))
|
|
1255 (setq state (parse-partial-sexp (point)
|
|
1256 (progn
|
|
1257 (forward-line 1) (point))
|
|
1258 nil nil state))))))
|
584
|
1259
|
|
1260 (provide 'lisp-mode)
|
|
1261
|
57401
|
1262 ;; arch-tag: 414c7f93-c245-4b77-8ed5-ed05ef7ff1bf
|
659
|
1263 ;;; lisp-mode.el ends here
|