]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/lisp-mode.el
8626c34f77caf53f7e2f3d25e7f217f6855f9c57
[gnu-emacs] / lisp / emacs-lisp / lisp-mode.el
1 ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands
2
3 ;; Copyright (C) 1985, 1986, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: lisp, languages
8
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
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) 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
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; The base major mode for editing Lisp code (used also for Emacs Lisp).
27 ;; This mode is documented in the Emacs manual.
28
29 ;;; Code:
30
31 (defvar font-lock-comment-face)
32 (defvar font-lock-doc-face)
33 (defvar font-lock-keywords-case-fold-search)
34 (defvar font-lock-string-face)
35
36 (defvar lisp-mode-abbrev-table nil)
37
38 (define-abbrev-table 'lisp-mode-abbrev-table ())
39
40 (defvar emacs-lisp-mode-syntax-table
41 (let ((table (make-syntax-table)))
42 (let ((i 0))
43 (while (< i ?0)
44 (modify-syntax-entry i "_ " table)
45 (setq i (1+ i)))
46 (setq i (1+ ?9))
47 (while (< i ?A)
48 (modify-syntax-entry i "_ " table)
49 (setq i (1+ i)))
50 (setq i (1+ ?Z))
51 (while (< i ?a)
52 (modify-syntax-entry i "_ " table)
53 (setq i (1+ i)))
54 (setq i (1+ ?z))
55 (while (< i 128)
56 (modify-syntax-entry i "_ " table)
57 (setq i (1+ i)))
58 (modify-syntax-entry ?\s " " table)
59 ;; Non-break space acts as whitespace.
60 (modify-syntax-entry ?\x8a0 " " table)
61 (modify-syntax-entry ?\t " " table)
62 (modify-syntax-entry ?\f " " table)
63 (modify-syntax-entry ?\n "> " table)
64 ;; This is probably obsolete since nowadays such features use overlays.
65 ;; ;; Give CR the same syntax as newline, for selective-display.
66 ;; (modify-syntax-entry ?\^m "> " table)
67 (modify-syntax-entry ?\; "< " table)
68 (modify-syntax-entry ?` "' " table)
69 (modify-syntax-entry ?' "' " table)
70 (modify-syntax-entry ?, "' " table)
71 (modify-syntax-entry ?@ "' " table)
72 ;; Used to be singlequote; changed for flonums.
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)
78 (modify-syntax-entry ?\) ")( " table)
79 (modify-syntax-entry ?\[ "(] " table)
80 (modify-syntax-entry ?\] ")[ " table))
81 table)
82 "Syntax table used in `emacs-lisp-mode'.")
83
84 (defvar lisp-mode-syntax-table
85 (let ((table (copy-syntax-table emacs-lisp-mode-syntax-table)))
86 (modify-syntax-entry ?\[ "_ " table)
87 (modify-syntax-entry ?\] "_ " table)
88 (modify-syntax-entry ?# "' 14b" table)
89 (modify-syntax-entry ?| "\" 23bn" table)
90 table)
91 "Syntax table used in `lisp-mode'.")
92
93 (defvar lisp-imenu-generic-expression
94 (list
95 (list nil
96 (purecopy (concat "^\\s-*("
97 (eval-when-compile
98 (regexp-opt
99 '("defun" "defun*" "defsubst" "defmacro"
100 "defadvice" "define-skeleton"
101 "define-minor-mode" "define-global-minor-mode"
102 "define-globalized-minor-mode"
103 "define-derived-mode" "define-generic-mode"
104 "define-compiler-macro" "define-modify-macro"
105 "defsetf" "define-setf-expander"
106 "define-method-combination"
107 "defgeneric" "defmethod") t))
108 "\\s-+\\(\\(\\sw\\|\\s_\\)+\\)"))
109 2)
110 (list (purecopy "Variables")
111 (purecopy (concat "^\\s-*("
112 (eval-when-compile
113 (regexp-opt
114 '("defvar" "defconst" "defconstant" "defcustom"
115 "defparameter" "define-symbol-macro") t))
116 "\\s-+\\(\\(\\sw\\|\\s_\\)+\\)"))
117 2)
118 (list (purecopy "Types")
119 (purecopy (concat "^\\s-*("
120 (eval-when-compile
121 (regexp-opt
122 '("defgroup" "deftheme" "deftype" "defstruct"
123 "defclass" "define-condition" "define-widget"
124 "defface" "defpackage") t))
125 "\\s-+'?\\(\\(\\sw\\|\\s_\\)+\\)"))
126 2))
127
128 "Imenu generic expression for Lisp mode. See `imenu-generic-expression'.")
129
130 ;; This was originally in autoload.el and is still used there.
131 (put 'autoload 'doc-string-elt 3)
132 (put 'defun 'doc-string-elt 3)
133 (put 'defun* 'doc-string-elt 3)
134 (put 'defvar 'doc-string-elt 3)
135 (put 'defcustom 'doc-string-elt 3)
136 (put 'deftheme 'doc-string-elt 2)
137 (put 'deftype 'doc-string-elt 3)
138 (put 'defconst 'doc-string-elt 3)
139 (put 'defmacro 'doc-string-elt 3)
140 (put 'defmacro* 'doc-string-elt 3)
141 (put 'defsubst 'doc-string-elt 3)
142 (put 'defstruct 'doc-string-elt 2)
143 (put 'define-skeleton 'doc-string-elt 2)
144 (put 'define-derived-mode 'doc-string-elt 4)
145 (put 'define-compilation-mode 'doc-string-elt 3)
146 (put 'easy-mmode-define-minor-mode 'doc-string-elt 2)
147 (put 'define-minor-mode 'doc-string-elt 2)
148 (put 'easy-mmode-define-global-mode 'doc-string-elt 2)
149 (put 'define-global-minor-mode 'doc-string-elt 2)
150 (put 'define-globalized-minor-mode 'doc-string-elt 2)
151 (put 'define-generic-mode 'doc-string-elt 7)
152 (put 'define-ibuffer-filter 'doc-string-elt 2)
153 (put 'define-ibuffer-op 'doc-string-elt 3)
154 (put 'define-ibuffer-sorter 'doc-string-elt 2)
155 (put 'lambda 'doc-string-elt 2)
156 (put 'defalias 'doc-string-elt 3)
157 (put 'defvaralias 'doc-string-elt 3)
158 (put 'define-category 'doc-string-elt 2)
159 (put 'define-overloadable-function 'doc-string-elt 3)
160
161 (defvar lisp-doc-string-elt-property 'doc-string-elt
162 "The symbol property that holds the docstring position info.")
163
164 (defun lisp-font-lock-syntactic-face-function (state)
165 (if (nth 3 state)
166 ;; This might be a (doc)string or a |...| symbol.
167 (let ((startpos (nth 8 state)))
168 (if (eq (char-after startpos) ?|)
169 ;; This is not a string, but a |...| symbol.
170 nil
171 (let* ((listbeg (nth 1 state))
172 (firstsym (and listbeg
173 (save-excursion
174 (goto-char listbeg)
175 (and (looking-at "([ \t\n]*\\(\\(\\sw\\|\\s_\\)+\\)")
176 (match-string 1)))))
177 (docelt (and firstsym (get (intern-soft firstsym)
178 lisp-doc-string-elt-property))))
179 (if (and docelt
180 ;; It's a string in a form that can have a docstring.
181 ;; Check whether it's in docstring position.
182 (save-excursion
183 (when (functionp docelt)
184 (goto-char (match-end 1))
185 (setq docelt (funcall docelt)))
186 (goto-char listbeg)
187 (forward-char 1)
188 (condition-case nil
189 (while (and (> docelt 0) (< (point) startpos)
190 (progn (forward-sexp 1) t))
191 (setq docelt (1- docelt)))
192 (error nil))
193 (and (zerop docelt) (<= (point) startpos)
194 (progn (forward-comment (point-max)) t)
195 (= (point) (nth 8 state)))))
196 font-lock-doc-face
197 font-lock-string-face))))
198 font-lock-comment-face))
199
200 (defun lisp-mode-variables (&optional lisp-syntax keywords-case-insensitive)
201 "Common initialization routine for lisp modes.
202 The LISP-SYNTAX argument is used by code in inf-lisp.el and is
203 \(uselessly) passed from pp.el, chistory.el, gnus-kill.el and
204 score-mode.el. KEYWORDS-CASE-INSENSITIVE non-nil means that for
205 font-lock keywords will not be case sensitive."
206 (when lisp-syntax
207 (set-syntax-table lisp-mode-syntax-table))
208 (setq local-abbrev-table lisp-mode-abbrev-table)
209 (make-local-variable 'paragraph-ignore-fill-prefix)
210 (setq paragraph-ignore-fill-prefix t)
211 (make-local-variable 'fill-paragraph-function)
212 (setq fill-paragraph-function 'lisp-fill-paragraph)
213 ;; Adaptive fill mode gets the fill wrong for a one-line paragraph made of
214 ;; a single docstring. Let's fix it here.
215 (set (make-local-variable 'adaptive-fill-function)
216 (lambda () (if (looking-at "\\s-+\"[^\n\"]+\"\\s-*$") "")))
217 ;; Adaptive fill mode gets in the way of auto-fill,
218 ;; and should make no difference for explicit fill
219 ;; because lisp-fill-paragraph should do the job.
220 ;; I believe that newcomment's auto-fill code properly deals with it -stef
221 ;;(set (make-local-variable 'adaptive-fill-mode) nil)
222 (make-local-variable 'indent-line-function)
223 (setq indent-line-function 'lisp-indent-line)
224 (make-local-variable 'parse-sexp-ignore-comments)
225 (setq parse-sexp-ignore-comments t)
226 (make-local-variable 'outline-regexp)
227 (setq outline-regexp ";;;\\(;* [^ \t\n]\\|###autoload\\)\\|(")
228 (make-local-variable 'outline-level)
229 (setq outline-level 'lisp-outline-level)
230 (make-local-variable 'comment-start)
231 (setq comment-start ";")
232 (make-local-variable 'comment-start-skip)
233 ;; Look within the line for a ; following an even number of backslashes
234 ;; after either a non-backslash or the line beginning.
235 (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *")
236 (make-local-variable 'font-lock-comment-start-skip)
237 ;; Font lock mode uses this only when it KNOWS a comment is starting.
238 (setq font-lock-comment-start-skip ";+ *")
239 (make-local-variable 'comment-add)
240 (setq comment-add 1) ;default to `;;' in comment-region
241 (make-local-variable 'comment-column)
242 (setq comment-column 40)
243 ;; Don't get confused by `;' in doc strings when paragraph-filling.
244 (set (make-local-variable 'comment-use-global-state) t)
245 (make-local-variable 'imenu-generic-expression)
246 (setq imenu-generic-expression lisp-imenu-generic-expression)
247 (make-local-variable 'multibyte-syntax-as-symbol)
248 (setq multibyte-syntax-as-symbol t)
249 (set (make-local-variable 'syntax-begin-function) 'beginning-of-defun)
250 (setq font-lock-defaults
251 `((lisp-font-lock-keywords
252 lisp-font-lock-keywords-1 lisp-font-lock-keywords-2)
253 nil ,keywords-case-insensitive (("+-*/.<>=!?$%_&~^:@" . "w")) nil
254 (font-lock-mark-block-function . mark-defun)
255 (font-lock-syntactic-face-function
256 . lisp-font-lock-syntactic-face-function))))
257
258 (defun lisp-outline-level ()
259 "Lisp mode `outline-level' function."
260 (let ((len (- (match-end 0) (match-beginning 0))))
261 (if (looking-at "(\\|;;;###autoload")
262 1000
263 len)))
264
265 (defvar lisp-mode-shared-map
266 (let ((map (make-sparse-keymap)))
267 (define-key map "\e\C-q" 'indent-sexp)
268 (define-key map "\177" 'backward-delete-char-untabify)
269 ;; This gets in the way when viewing a Lisp file in view-mode. As
270 ;; long as [backspace] is mapped into DEL via the
271 ;; function-key-map, this should remain disabled!!
272 ;;;(define-key map [backspace] 'backward-delete-char-untabify)
273 map)
274 "Keymap for commands shared by all sorts of Lisp modes.")
275
276 (defvar emacs-lisp-mode-map
277 (let ((map (make-sparse-keymap "Emacs-Lisp"))
278 (menu-map (make-sparse-keymap "Emacs-Lisp"))
279 (lint-map (make-sparse-keymap))
280 (prof-map (make-sparse-keymap))
281 (tracing-map (make-sparse-keymap)))
282 (set-keymap-parent map lisp-mode-shared-map)
283 (define-key map "\e\t" 'completion-at-point)
284 (define-key map "\e\C-x" 'eval-defun)
285 (define-key map "\e\C-q" 'indent-pp-sexp)
286 (define-key map [menu-bar emacs-lisp] (cons (purecopy "Emacs-Lisp") menu-map))
287 (define-key menu-map [eldoc]
288 `(menu-item ,(purecopy "Auto-Display Documentation Strings") eldoc-mode
289 :button (:toggle . (bound-and-true-p eldoc-mode))
290 :help ,(purecopy "Display the documentation string for the item under cursor")))
291 (define-key menu-map [checkdoc]
292 `(menu-item ,(purecopy "Check Documentation Strings") checkdoc
293 :help ,(purecopy "Check documentation strings for style requirements")))
294 (define-key menu-map [re-builder]
295 `(menu-item ,(purecopy "Construct Regexp") re-builder
296 :help ,(purecopy "Construct a regexp interactively")))
297 (define-key menu-map [tracing] (cons (purecopy "Tracing") tracing-map))
298 (define-key tracing-map [tr-a]
299 `(menu-item ,(purecopy "Untrace All") untrace-all
300 :help ,(purecopy "Untrace all currently traced functions")))
301 (define-key tracing-map [tr-uf]
302 `(menu-item ,(purecopy "Untrace function...") untrace-function
303 :help ,(purecopy "Untrace function, and possibly activate all remaining advice")))
304 (define-key tracing-map [tr-sep] menu-bar-separator)
305 (define-key tracing-map [tr-q]
306 `(menu-item ,(purecopy "Trace Function Quietly...") trace-function-background
307 :help ,(purecopy "Trace the function with trace output going quietly to a buffer")))
308 (define-key tracing-map [tr-f]
309 `(menu-item ,(purecopy "Trace Function...") trace-function
310 :help ,(purecopy "Trace the function given as an argument")))
311 (define-key menu-map [profiling] (cons (purecopy "Profiling") prof-map))
312 (define-key prof-map [prof-restall]
313 `(menu-item ,(purecopy "Remove Instrumentation for All Functions") elp-restore-all
314 :help ,(purecopy "Restore the original definitions of all functions being profiled")))
315 (define-key prof-map [prof-restfunc]
316 `(menu-item ,(purecopy "Remove Instrumentation for Function...") elp-restore-function
317 :help ,(purecopy "Restore an instrumented function to its original definition")))
318
319 (define-key prof-map [sep-rem] menu-bar-separator)
320 (define-key prof-map [prof-resall]
321 `(menu-item ,(purecopy "Reset Counters for All Functions") elp-reset-all
322 :help ,(purecopy "Reset the profiling information for all functions being profiled")))
323 (define-key prof-map [prof-resfunc]
324 `(menu-item ,(purecopy "Reset Counters for Function...") elp-reset-function
325 :help ,(purecopy "Reset the profiling information for a function")))
326 (define-key prof-map [prof-res]
327 `(menu-item ,(purecopy "Show Profiling Results") elp-results
328 :help ,(purecopy "Display current profiling results")))
329 (define-key prof-map [prof-pack]
330 `(menu-item ,(purecopy "Instrument Package...") elp-instrument-package
331 :help ,(purecopy "Instrument for profiling all function that start with a prefix")))
332 (define-key prof-map [prof-func]
333 `(menu-item ,(purecopy "Instrument Function...") elp-instrument-function
334 :help ,(purecopy "Instrument a function for profiling")))
335 (define-key menu-map [lint] (cons (purecopy "Linting") lint-map))
336 (define-key lint-map [lint-di]
337 `(menu-item ,(purecopy "Lint Directory...") elint-directory
338 :help ,(purecopy "Lint a directory")))
339 (define-key lint-map [lint-f]
340 `(menu-item ,(purecopy "Lint File...") elint-file
341 :help ,(purecopy "Lint a file")))
342 (define-key lint-map [lint-b]
343 `(menu-item ,(purecopy "Lint Buffer") elint-current-buffer
344 :help ,(purecopy "Lint the current buffer")))
345 (define-key lint-map [lint-d]
346 `(menu-item ,(purecopy "Lint Defun") elint-defun
347 :help ,(purecopy "Lint the function at point")))
348 (define-key menu-map [edebug-defun]
349 `(menu-item ,(purecopy "Instrument Function for Debugging") edebug-defun
350 :help ,(purecopy "Evaluate the top level form point is in, stepping through with Edebug")
351 :keys ,(purecopy "C-u C-M-x")))
352 (define-key menu-map [separator-byte] menu-bar-separator)
353 (define-key menu-map [disas]
354 `(menu-item ,(purecopy "Disassemble Byte Compiled Object...") disassemble
355 :help ,(purecopy "Print disassembled code for OBJECT in a buffer")))
356 (define-key menu-map [byte-recompile]
357 `(menu-item ,(purecopy "Byte-recompile Directory...") byte-recompile-directory
358 :help ,(purecopy "Recompile every `.el' file in DIRECTORY that needs recompilation")))
359 (define-key menu-map [emacs-byte-compile-and-load]
360 `(menu-item ,(purecopy "Byte-compile and Load") emacs-lisp-byte-compile-and-load
361 :help ,(purecopy "Byte-compile the current file (if it has changed), then load compiled code")))
362 (define-key menu-map [byte-compile]
363 `(menu-item ,(purecopy "Byte-compile this File") emacs-lisp-byte-compile
364 :help ,(purecopy "Byte compile the file containing the current buffer")))
365 (define-key menu-map [separator-eval] menu-bar-separator)
366 (define-key menu-map [ielm]
367 `(menu-item ,(purecopy "Interactive Expression Evaluation") ielm
368 :help ,(purecopy "Interactively evaluate Emacs Lisp expressions")))
369 (define-key menu-map [eval-buffer]
370 `(menu-item ,(purecopy "Evaluate Buffer") eval-buffer
371 :help ,(purecopy "Execute the current buffer as Lisp code")))
372 (define-key menu-map [eval-region]
373 `(menu-item ,(purecopy "Evaluate Region") eval-region
374 :help ,(purecopy "Execute the region as Lisp code")
375 :enable mark-active))
376 (define-key menu-map [eval-sexp]
377 `(menu-item ,(purecopy "Evaluate Last S-expression") eval-last-sexp
378 :help ,(purecopy "Evaluate sexp before point; print value in minibuffer")))
379 (define-key menu-map [separator-format] menu-bar-separator)
380 (define-key menu-map [comment-region]
381 `(menu-item ,(purecopy "Comment Out Region") comment-region
382 :help ,(purecopy "Comment or uncomment each line in the region")
383 :enable mark-active))
384 (define-key menu-map [indent-region]
385 `(menu-item ,(purecopy "Indent Region") indent-region
386 :help ,(purecopy "Indent each nonblank line in the region")
387 :enable mark-active))
388 (define-key menu-map [indent-line]
389 `(menu-item ,(purecopy "Indent Line") lisp-indent-line))
390 map)
391 "Keymap for Emacs Lisp mode.
392 All commands in `lisp-mode-shared-map' are inherited by this map.")
393
394 (defun emacs-lisp-byte-compile ()
395 "Byte compile the file containing the current buffer."
396 (interactive)
397 (if buffer-file-name
398 (byte-compile-file buffer-file-name)
399 (error "The buffer must be saved in a file first")))
400
401 (defun emacs-lisp-byte-compile-and-load ()
402 "Byte-compile the current file (if it has changed), then load compiled code."
403 (interactive)
404 (or buffer-file-name
405 (error "The buffer must be saved in a file first"))
406 (require 'bytecomp)
407 ;; Recompile if file or buffer has changed since last compilation.
408 (if (and (buffer-modified-p)
409 (y-or-n-p (format "Save buffer %s first? " (buffer-name))))
410 (save-buffer))
411 (let ((compiled-file-name (byte-compile-dest-file buffer-file-name)))
412 (if (file-newer-than-file-p compiled-file-name buffer-file-name)
413 (load-file compiled-file-name)
414 (byte-compile-file buffer-file-name t))))
415
416 (defcustom emacs-lisp-mode-hook nil
417 "Hook run when entering Emacs Lisp mode."
418 :options '(turn-on-eldoc-mode imenu-add-menubar-index checkdoc-minor-mode)
419 :type 'hook
420 :group 'lisp)
421
422 (defcustom lisp-mode-hook nil
423 "Hook run when entering Lisp mode."
424 :options '(imenu-add-menubar-index)
425 :type 'hook
426 :group 'lisp)
427
428 (defcustom lisp-interaction-mode-hook nil
429 "Hook run when entering Lisp Interaction mode."
430 :options '(turn-on-eldoc-mode)
431 :type 'hook
432 :group 'lisp)
433
434 (define-derived-mode emacs-lisp-mode nil "Emacs-Lisp"
435 "Major mode for editing Lisp code to run in Emacs.
436 Commands:
437 Delete converts tabs to spaces as it moves back.
438 Blank lines separate paragraphs. Semicolons start comments.
439
440 \\{emacs-lisp-mode-map}
441 Entry to this mode calls the value of `emacs-lisp-mode-hook'
442 if that value is non-nil."
443 :group 'lisp
444 (lisp-mode-variables)
445 (setq imenu-case-fold-search nil)
446 (add-hook 'completion-at-point-functions
447 'lisp-completion-at-point nil 'local))
448
449 (defvar lisp-mode-map
450 (let ((map (make-sparse-keymap))
451 (menu-map (make-sparse-keymap "Lisp")))
452 (set-keymap-parent map lisp-mode-shared-map)
453 (define-key map "\e\C-x" 'lisp-eval-defun)
454 (define-key map "\C-c\C-z" 'run-lisp)
455 (define-key map [menu-bar lisp] (cons (purecopy "Lisp") menu-map))
456 (define-key menu-map [run-lisp]
457 `(menu-item ,(purecopy "Run inferior Lisp") run-lisp
458 :help ,(purecopy "Run an inferior Lisp process, input and output via buffer `*inferior-lisp*'")))
459 (define-key menu-map [ev-def]
460 `(menu-item ,(purecopy "Eval defun") lisp-eval-defun
461 :help ,(purecopy "Send the current defun to the Lisp process made by M-x run-lisp")))
462 (define-key menu-map [ind-sexp]
463 `(menu-item ,(purecopy "Indent sexp") indent-sexp
464 :help ,(purecopy "Indent each line of the list starting just after point")))
465 map)
466 "Keymap for ordinary Lisp mode.
467 All commands in `lisp-mode-shared-map' are inherited by this map.")
468
469 (defun lisp-mode ()
470 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
471 Commands:
472 Delete converts tabs to spaces as it moves back.
473 Blank lines separate paragraphs. Semicolons start comments.
474
475 \\{lisp-mode-map}
476 Note that `run-lisp' may be used either to start an inferior Lisp job
477 or to switch back to an existing one.
478
479 Entry to this mode calls the value of `lisp-mode-hook'
480 if that value is non-nil."
481 (interactive)
482 (kill-all-local-variables)
483 (use-local-map lisp-mode-map)
484 (setq major-mode 'lisp-mode)
485 (setq mode-name "Lisp")
486 (lisp-mode-variables nil t)
487 (make-local-variable 'comment-start-skip)
488 (setq comment-start-skip
489 "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\)\\(;+\\|#|\\) *")
490 (setq imenu-case-fold-search t)
491 (set-syntax-table lisp-mode-syntax-table)
492 (run-mode-hooks 'lisp-mode-hook))
493 (put 'lisp-mode 'find-tag-default-function 'lisp-find-tag-default)
494
495 (defun lisp-find-tag-default ()
496 (let ((default (find-tag-default)))
497 (when (stringp default)
498 (if (string-match ":+" default)
499 (substring default (match-end 0))
500 default))))
501
502 ;; Used in old LispM code.
503 (defalias 'common-lisp-mode 'lisp-mode)
504
505 ;; This will do unless inf-lisp.el is loaded.
506 (defun lisp-eval-defun (&optional and-go)
507 "Send the current defun to the Lisp process made by \\[run-lisp]."
508 (interactive)
509 (error "Process lisp does not exist"))
510
511 (defvar lisp-interaction-mode-map
512 (let ((map (make-sparse-keymap))
513 (menu-map (make-sparse-keymap "Lisp-Interaction")))
514 (set-keymap-parent map lisp-mode-shared-map)
515 (define-key map "\e\C-x" 'eval-defun)
516 (define-key map "\e\C-q" 'indent-pp-sexp)
517 (define-key map "\e\t" 'completion-at-point)
518 (define-key map "\n" 'eval-print-last-sexp)
519 (define-key map [menu-bar lisp-interaction] (cons (purecopy "Lisp-Interaction") menu-map))
520 (define-key menu-map [eval-defun]
521 `(menu-item ,(purecopy "Evaluate Defun") eval-defun
522 :help ,(purecopy "Evaluate the top-level form containing point, or after point")))
523 (define-key menu-map [eval-print-last-sexp]
524 `(menu-item ,(purecopy "Evaluate and print") eval-print-last-sexp
525 :help ,(purecopy "Evaluate sexp before point; print value into current buffer")))
526 (define-key menu-map [edebug-defun-lisp-interaction]
527 `(menu-item ,(purecopy "Instrument Function for Debugging") edebug-defun
528 :help ,(purecopy "Evaluate the top level form point is in, stepping through with Edebug")
529 :keys ,(purecopy "C-u C-M-x")))
530 (define-key menu-map [indent-pp-sexp]
531 `(menu-item ,(purecopy "Indent or Pretty-Print") indent-pp-sexp
532 :help ,(purecopy "Indent each line of the list starting just after point, or prettyprint it")))
533 (define-key menu-map [complete-symbol]
534 `(menu-item ,(purecopy "Complete Lisp Symbol") completion-at-point
535 :help ,(purecopy "Perform completion on Lisp symbol preceding point")))
536 map)
537 "Keymap for Lisp Interaction mode.
538 All commands in `lisp-mode-shared-map' are inherited by this map.")
539
540 (defvar lisp-interaction-mode-abbrev-table lisp-mode-abbrev-table)
541 (define-derived-mode lisp-interaction-mode emacs-lisp-mode "Lisp Interaction"
542 "Major mode for typing and evaluating Lisp forms.
543 Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression
544 before point, and prints its value into the buffer, advancing point.
545 Note that printing is controlled by `eval-expression-print-length'
546 and `eval-expression-print-level'.
547
548 Commands:
549 Delete converts tabs to spaces as it moves back.
550 Paragraphs are separated only by blank lines.
551 Semicolons start comments.
552
553 \\{lisp-interaction-mode-map}
554 Entry to this mode calls the value of `lisp-interaction-mode-hook'
555 if that value is non-nil.")
556
557 (defun eval-print-last-sexp ()
558 "Evaluate sexp before point; print value into current buffer.
559
560 If `eval-expression-debug-on-error' is non-nil, which is the default,
561 this command arranges for all errors to enter the debugger.
562
563 Note that printing the result is controlled by the variables
564 `eval-expression-print-length' and `eval-expression-print-level',
565 which see."
566 (interactive)
567 (let ((standard-output (current-buffer)))
568 (terpri)
569 (eval-last-sexp t)
570 (terpri)))
571
572
573 (defun last-sexp-setup-props (beg end value alt1 alt2)
574 "Set up text properties for the output of `eval-last-sexp-1'.
575 BEG and END are the start and end of the output in current-buffer.
576 VALUE is the Lisp value printed, ALT1 and ALT2 are strings for the
577 alternative printed representations that can be displayed."
578 (let ((map (make-sparse-keymap)))
579 (define-key map "\C-m" 'last-sexp-toggle-display)
580 (define-key map [down-mouse-2] 'mouse-set-point)
581 (define-key map [mouse-2] 'last-sexp-toggle-display)
582 (add-text-properties
583 beg end
584 `(printed-value (,value ,alt1 ,alt2)
585 mouse-face highlight
586 keymap ,map
587 help-echo "RET, mouse-2: toggle abbreviated display"
588 rear-nonsticky (mouse-face keymap help-echo
589 printed-value)))))
590
591
592 (defun last-sexp-toggle-display (&optional arg)
593 "Toggle between abbreviated and unabbreviated printed representations."
594 (interactive "P")
595 (save-restriction
596 (widen)
597 (let ((value (get-text-property (point) 'printed-value)))
598 (when value
599 (let ((beg (or (previous-single-property-change (min (point-max) (1+ (point)))
600 'printed-value)
601 (point)))
602 (end (or (next-single-char-property-change (point) 'printed-value) (point)))
603 (standard-output (current-buffer))
604 (point (point)))
605 (delete-region beg end)
606 (insert (nth 1 value))
607 (or (= beg point)
608 (setq point (1- (point))))
609 (last-sexp-setup-props beg (point)
610 (nth 0 value)
611 (nth 2 value)
612 (nth 1 value))
613 (goto-char (min (point-max) point)))))))
614
615 (defun prin1-char (char)
616 "Return a string representing CHAR as a character rather than as an integer.
617 If CHAR is not a character, return nil."
618 (and (integerp char)
619 (eventp char)
620 (let ((c (event-basic-type char))
621 (mods (event-modifiers char))
622 string)
623 ;; Prevent ?A from turning into ?\S-a.
624 (if (and (memq 'shift mods)
625 (zerop (logand char ?\S-\^@))
626 (not (let ((case-fold-search nil))
627 (char-equal c (upcase c)))))
628 (setq c (upcase c) mods nil))
629 ;; What string are we considering using?
630 (condition-case nil
631 (setq string
632 (concat
633 "?"
634 (mapconcat
635 (lambda (modif)
636 (cond ((eq modif 'super) "\\s-")
637 (t (string ?\\ (upcase (aref (symbol-name modif) 0)) ?-))))
638 mods "")
639 (cond
640 ((memq c '(?\; ?\( ?\) ?\{ ?\} ?\[ ?\] ?\" ?\' ?\\)) (string ?\\ c))
641 ((eq c 127) "\\C-?")
642 (t
643 (string c)))))
644 (error nil))
645 ;; Verify the string reads a CHAR, not to some other character.
646 ;; If it doesn't, return nil instead.
647 (and string
648 (= (car (read-from-string string)) char)
649 string))))
650
651
652 (defun preceding-sexp ()
653 "Return sexp before the point."
654 (let ((opoint (point))
655 ignore-quotes
656 expr)
657 (save-excursion
658 (with-syntax-table emacs-lisp-mode-syntax-table
659 ;; If this sexp appears to be enclosed in `...'
660 ;; then ignore the surrounding quotes.
661 (setq ignore-quotes
662 (or (eq (following-char) ?\')
663 (eq (preceding-char) ?\')))
664 (forward-sexp -1)
665 ;; If we were after `?\e' (or similar case),
666 ;; use the whole thing, not just the `e'.
667 (when (eq (preceding-char) ?\\)
668 (forward-char -1)
669 (when (eq (preceding-char) ??)
670 (forward-char -1)))
671
672 ;; Skip over hash table read syntax.
673 (and (> (point) (1+ (point-min)))
674 (looking-back "#s" (- (point) 2))
675 (forward-char -2))
676
677 ;; Skip over `#N='s.
678 (when (eq (preceding-char) ?=)
679 (let (labeled-p)
680 (save-excursion
681 (skip-chars-backward "0-9#=")
682 (setq labeled-p (looking-at "\\(#[0-9]+=\\)+")))
683 (when labeled-p
684 (forward-sexp -1))))
685
686 (save-restriction
687 ;; vladimir@cs.ualberta.ca 30-Jul-1997: skip ` in
688 ;; `variable' so that the value is returned, not the
689 ;; name
690 (if (and ignore-quotes
691 (eq (following-char) ?`))
692 (forward-char))
693 (narrow-to-region (point-min) opoint)
694 (setq expr (read (current-buffer)))
695 ;; If it's an (interactive ...) form, it's more
696 ;; useful to show how an interactive call would
697 ;; use it.
698 (and (consp expr)
699 (eq (car expr) 'interactive)
700 (setq expr
701 (list 'call-interactively
702 (list 'quote
703 (list 'lambda
704 '(&rest args)
705 expr
706 'args)))))
707 expr)))))
708
709
710 (defun eval-last-sexp-1 (eval-last-sexp-arg-internal)
711 "Evaluate sexp before point; print value in minibuffer.
712 With argument, print output into current buffer."
713 (let ((standard-output (if eval-last-sexp-arg-internal (current-buffer) t)))
714 (eval-last-sexp-print-value (eval (preceding-sexp)))))
715
716
717 (defun eval-last-sexp-print-value (value)
718 (let ((unabbreviated (let ((print-length nil) (print-level nil))
719 (prin1-to-string value)))
720 (print-length eval-expression-print-length)
721 (print-level eval-expression-print-level)
722 (beg (point))
723 end)
724 (prog1
725 (prin1 value)
726 (let ((str (eval-expression-print-format value)))
727 (if str (princ str)))
728 (setq end (point))
729 (when (and (bufferp standard-output)
730 (or (not (null print-length))
731 (not (null print-level)))
732 (not (string= unabbreviated
733 (buffer-substring-no-properties beg end))))
734 (last-sexp-setup-props beg end value
735 unabbreviated
736 (buffer-substring-no-properties beg end))
737 ))))
738
739
740 (defvar eval-last-sexp-fake-value (make-symbol "t"))
741
742 (defun eval-last-sexp (eval-last-sexp-arg-internal)
743 "Evaluate sexp before point; print value in minibuffer.
744 Interactively, with prefix argument, print output into current buffer.
745 Truncates long output according to the value of the variables
746 `eval-expression-print-length' and `eval-expression-print-level'.
747
748 If `eval-expression-debug-on-error' is non-nil, which is the default,
749 this command arranges for all errors to enter the debugger."
750 (interactive "P")
751 (if (null eval-expression-debug-on-error)
752 (eval-last-sexp-1 eval-last-sexp-arg-internal)
753 (let ((value
754 (let ((debug-on-error eval-last-sexp-fake-value))
755 (cons (eval-last-sexp-1 eval-last-sexp-arg-internal)
756 debug-on-error))))
757 (unless (eq (cdr value) eval-last-sexp-fake-value)
758 (setq debug-on-error (cdr value)))
759 (car value))))
760
761 (defun eval-defun-1 (form)
762 "Treat some expressions specially.
763 Reset the `defvar' and `defcustom' variables to the initial value.
764 Reinitialize the face according to the `defface' specification."
765 ;; The code in edebug-defun should be consistent with this, but not
766 ;; the same, since this gets a macroexpended form.
767 (cond ((not (listp form))
768 form)
769 ((and (eq (car form) 'defvar)
770 (cdr-safe (cdr-safe form))
771 (boundp (cadr form)))
772 ;; Force variable to be re-set.
773 `(progn (defvar ,(nth 1 form) nil ,@(nthcdr 3 form))
774 (setq-default ,(nth 1 form) ,(nth 2 form))))
775 ;; `defcustom' is now macroexpanded to
776 ;; `custom-declare-variable' with a quoted value arg.
777 ((and (eq (car form) 'custom-declare-variable)
778 (default-boundp (eval (nth 1 form))))
779 ;; Force variable to be bound.
780 (set-default (eval (nth 1 form)) (eval (nth 1 (nth 2 form))))
781 form)
782 ;; `defface' is macroexpanded to `custom-declare-face'.
783 ((eq (car form) 'custom-declare-face)
784 ;; Reset the face.
785 (setq face-new-frame-defaults
786 (assq-delete-all (eval (nth 1 form)) face-new-frame-defaults))
787 (put (eval (nth 1 form)) 'face-defface-spec nil)
788 ;; Setting `customized-face' to the new spec after calling
789 ;; the form, but preserving the old saved spec in `saved-face',
790 ;; imitates the situation when the new face spec is set
791 ;; temporarily for the current session in the customize
792 ;; buffer, thus allowing `face-user-default-spec' to use the
793 ;; new customized spec instead of the saved spec.
794 ;; Resetting `saved-face' temporarily to nil is needed to let
795 ;; `defface' change the spec, regardless of a saved spec.
796 (prog1 `(prog1 ,form
797 (put ,(nth 1 form) 'saved-face
798 ',(get (eval (nth 1 form)) 'saved-face))
799 (put ,(nth 1 form) 'customized-face
800 ,(nth 2 form)))
801 (put (eval (nth 1 form)) 'saved-face nil)))
802 ((eq (car form) 'progn)
803 (cons 'progn (mapcar 'eval-defun-1 (cdr form))))
804 (t form)))
805
806 (defun eval-defun-2 ()
807 "Evaluate defun that point is in or before.
808 The value is displayed in the minibuffer.
809 If the current defun is actually a call to `defvar',
810 then reset the variable using the initial value expression
811 even if the variable already has some other value.
812 \(Normally `defvar' does not change the variable's value
813 if it already has a value.\)
814
815 With argument, insert value in current buffer after the defun.
816 Return the result of evaluation."
817 (interactive "P")
818 ;; FIXME: the print-length/level bindings should only be applied while
819 ;; printing, not while evaluating.
820 (let ((debug-on-error eval-expression-debug-on-error)
821 (print-length eval-expression-print-length)
822 (print-level eval-expression-print-level))
823 (save-excursion
824 ;; Arrange for eval-region to "read" the (possibly) altered form.
825 ;; eval-region handles recording which file defines a function or
826 ;; variable. Re-written using `apply' to avoid capturing
827 ;; variables like `end'.
828 (apply
829 #'eval-region
830 (let ((standard-output t)
831 beg end form)
832 ;; Read the form from the buffer, and record where it ends.
833 (save-excursion
834 (end-of-defun)
835 (beginning-of-defun)
836 (setq beg (point))
837 (setq form (read (current-buffer)))
838 (setq end (point)))
839 ;; Alter the form if necessary.
840 (setq form (eval-defun-1 (macroexpand form)))
841 (list beg end standard-output
842 `(lambda (ignore)
843 ;; Skipping to the end of the specified region
844 ;; will make eval-region return.
845 (goto-char ,end)
846 ',form))))))
847 ;; The result of evaluation has been put onto VALUES. So return it.
848 (car values))
849
850 (defun eval-defun (edebug-it)
851 "Evaluate the top-level form containing point, or after point.
852
853 If the current defun is actually a call to `defvar' or `defcustom',
854 evaluating it this way resets the variable using its initial value
855 expression even if the variable already has some other value.
856 \(Normally `defvar' and `defcustom' do not alter the value if there
857 already is one.) In an analogous way, evaluating a `defface'
858 overrides any customizations of the face, so that it becomes
859 defined exactly as the `defface' expression says.
860
861 If `eval-expression-debug-on-error' is non-nil, which is the default,
862 this command arranges for all errors to enter the debugger.
863
864 With a prefix argument, instrument the code for Edebug.
865
866 If acting on a `defun' for FUNCTION, and the function was
867 instrumented, `Edebug: FUNCTION' is printed in the minibuffer. If not
868 instrumented, just FUNCTION is printed.
869
870 If not acting on a `defun', the result of evaluation is displayed in
871 the minibuffer. This display is controlled by the variables
872 `eval-expression-print-length' and `eval-expression-print-level',
873 which see."
874 (interactive "P")
875 (cond (edebug-it
876 (require 'edebug)
877 (eval-defun (not edebug-all-defs)))
878 (t
879 (if (null eval-expression-debug-on-error)
880 (eval-defun-2)
881 (let ((old-value (make-symbol "t")) new-value value)
882 (let ((debug-on-error old-value))
883 (setq value (eval-defun-2))
884 (setq new-value debug-on-error))
885 (unless (eq old-value new-value)
886 (setq debug-on-error new-value))
887 value)))))
888
889 ;; May still be used by some external Lisp-mode variant.
890 (define-obsolete-function-alias 'lisp-comment-indent
891 'comment-indent-default "22.1")
892 (define-obsolete-function-alias 'lisp-mode-auto-fill 'do-auto-fill "23.1")
893
894 (defcustom lisp-indent-offset nil
895 "If non-nil, indent second line of expressions that many more columns."
896 :group 'lisp
897 :type '(choice (const nil) integer))
898 (put 'lisp-indent-offset 'safe-local-variable
899 (lambda (x) (or (null x) (integerp x))))
900
901 (defcustom lisp-indent-function 'lisp-indent-function
902 "A function to be called by `calculate-lisp-indent'.
903 It indents the arguments of a Lisp function call. This function
904 should accept two arguments: the indent-point, and the
905 `parse-partial-sexp' state at that position. One option for this
906 function is `common-lisp-indent-function'."
907 :type 'function
908 :group 'lisp)
909
910 (defun lisp-indent-line (&optional whole-exp)
911 "Indent current line as Lisp code.
912 With argument, indent any additional lines of the same expression
913 rigidly along with this one."
914 (interactive "P")
915 (let ((indent (calculate-lisp-indent)) shift-amt end
916 (pos (- (point-max) (point)))
917 (beg (progn (beginning-of-line) (point))))
918 (skip-chars-forward " \t")
919 (if (or (null indent) (looking-at "\\s<\\s<\\s<"))
920 ;; Don't alter indentation of a ;;; comment line
921 ;; or a line that starts in a string.
922 (goto-char (- (point-max) pos))
923 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<")))
924 ;; Single-semicolon comment lines should be indented
925 ;; as comment lines, not as code.
926 (progn (indent-for-comment) (forward-char -1))
927 (if (listp indent) (setq indent (car indent)))
928 (setq shift-amt (- indent (current-column)))
929 (if (zerop shift-amt)
930 nil
931 (delete-region beg (point))
932 (indent-to indent)))
933 ;; If initial point was within line's indentation,
934 ;; position after the indentation. Else stay at same point in text.
935 (if (> (- (point-max) pos) (point))
936 (goto-char (- (point-max) pos)))
937 ;; If desired, shift remaining lines of expression the same amount.
938 (and whole-exp (not (zerop shift-amt))
939 (save-excursion
940 (goto-char beg)
941 (forward-sexp 1)
942 (setq end (point))
943 (goto-char beg)
944 (forward-line 1)
945 (setq beg (point))
946 (> end beg))
947 (indent-code-rigidly beg end shift-amt)))))
948
949 (defvar calculate-lisp-indent-last-sexp)
950
951 (defun calculate-lisp-indent (&optional parse-start)
952 "Return appropriate indentation for current line as Lisp code.
953 In usual case returns an integer: the column to indent to.
954 If the value is nil, that means don't change the indentation
955 because the line starts inside a string.
956
957 The value can also be a list of the form (COLUMN CONTAINING-SEXP-START).
958 This means that following lines at the same level of indentation
959 should not necessarily be indented the same as this line.
960 Then COLUMN is the column to indent to, and CONTAINING-SEXP-START
961 is the buffer position of the start of the containing expression."
962 (save-excursion
963 (beginning-of-line)
964 (let ((indent-point (point))
965 state paren-depth
966 ;; setting this to a number inhibits calling hook
967 (desired-indent nil)
968 (retry t)
969 calculate-lisp-indent-last-sexp containing-sexp)
970 (if parse-start
971 (goto-char parse-start)
972 (beginning-of-defun))
973 ;; Find outermost containing sexp
974 (while (< (point) indent-point)
975 (setq state (parse-partial-sexp (point) indent-point 0)))
976 ;; Find innermost containing sexp
977 (while (and retry
978 state
979 (> (setq paren-depth (elt state 0)) 0))
980 (setq retry nil)
981 (setq calculate-lisp-indent-last-sexp (elt state 2))
982 (setq containing-sexp (elt state 1))
983 ;; Position following last unclosed open.
984 (goto-char (1+ containing-sexp))
985 ;; Is there a complete sexp since then?
986 (if (and calculate-lisp-indent-last-sexp
987 (> calculate-lisp-indent-last-sexp (point)))
988 ;; Yes, but is there a containing sexp after that?
989 (let ((peek (parse-partial-sexp calculate-lisp-indent-last-sexp
990 indent-point 0)))
991 (if (setq retry (car (cdr peek))) (setq state peek)))))
992 (if retry
993 nil
994 ;; Innermost containing sexp found
995 (goto-char (1+ containing-sexp))
996 (if (not calculate-lisp-indent-last-sexp)
997 ;; indent-point immediately follows open paren.
998 ;; Don't call hook.
999 (setq desired-indent (current-column))
1000 ;; Find the start of first element of containing sexp.
1001 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
1002 (cond ((looking-at "\\s(")
1003 ;; First element of containing sexp is a list.
1004 ;; Indent under that list.
1005 )
1006 ((> (save-excursion (forward-line 1) (point))
1007 calculate-lisp-indent-last-sexp)
1008 ;; This is the first line to start within the containing sexp.
1009 ;; It's almost certainly a function call.
1010 (if (= (point) calculate-lisp-indent-last-sexp)
1011 ;; Containing sexp has nothing before this line
1012 ;; except the first element. Indent under that element.
1013 nil
1014 ;; Skip the first element, find start of second (the first
1015 ;; argument of the function call) and indent under.
1016 (progn (forward-sexp 1)
1017 (parse-partial-sexp (point)
1018 calculate-lisp-indent-last-sexp
1019 0 t)))
1020 (backward-prefix-chars))
1021 (t
1022 ;; Indent beneath first sexp on same line as
1023 ;; `calculate-lisp-indent-last-sexp'. Again, it's
1024 ;; almost certainly a function call.
1025 (goto-char calculate-lisp-indent-last-sexp)
1026 (beginning-of-line)
1027 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp
1028 0 t)
1029 (backward-prefix-chars)))))
1030 ;; Point is at the point to indent under unless we are inside a string.
1031 ;; Call indentation hook except when overridden by lisp-indent-offset
1032 ;; or if the desired indentation has already been computed.
1033 (let ((normal-indent (current-column)))
1034 (cond ((elt state 3)
1035 ;; Inside a string, don't change indentation.
1036 nil)
1037 ((and (integerp lisp-indent-offset) containing-sexp)
1038 ;; Indent by constant offset
1039 (goto-char containing-sexp)
1040 (+ (current-column) lisp-indent-offset))
1041 ;; in this case calculate-lisp-indent-last-sexp is not nil
1042 (calculate-lisp-indent-last-sexp
1043 (or
1044 ;; try to align the parameters of a known function
1045 (and lisp-indent-function
1046 (not retry)
1047 (funcall lisp-indent-function indent-point state))
1048 ;; If the function has no special alignment
1049 ;; or it does not apply to this argument,
1050 ;; try to align a constant-symbol under the last
1051 ;; preceding constant symbol, if there is such one of
1052 ;; the last 2 preceding symbols, in the previous
1053 ;; uncommented line.
1054 (and (save-excursion
1055 (goto-char indent-point)
1056 (skip-chars-forward " \t")
1057 (looking-at ":"))
1058 ;; The last sexp may not be at the indentation
1059 ;; where it begins, so find that one, instead.
1060 (save-excursion
1061 (goto-char calculate-lisp-indent-last-sexp)
1062 ;; Handle prefix characters and whitespace
1063 ;; following an open paren. (Bug#1012)
1064 (backward-prefix-chars)
1065 (while (and (not (looking-back "^[ \t]*\\|([ \t]+"))
1066 (or (not containing-sexp)
1067 (< (1+ containing-sexp) (point))))
1068 (forward-sexp -1)
1069 (backward-prefix-chars))
1070 (setq calculate-lisp-indent-last-sexp (point)))
1071 (> calculate-lisp-indent-last-sexp
1072 (save-excursion
1073 (goto-char (1+ containing-sexp))
1074 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
1075 (point)))
1076 (let ((parse-sexp-ignore-comments t)
1077 indent)
1078 (goto-char calculate-lisp-indent-last-sexp)
1079 (or (and (looking-at ":")
1080 (setq indent (current-column)))
1081 (and (< (save-excursion (beginning-of-line) (point))
1082 (prog2 (backward-sexp) (point)))
1083 (looking-at ":")
1084 (setq indent (current-column))))
1085 indent))
1086 ;; another symbols or constants not preceded by a constant
1087 ;; as defined above.
1088 normal-indent))
1089 ;; in this case calculate-lisp-indent-last-sexp is nil
1090 (desired-indent)
1091 (t
1092 normal-indent))))))
1093
1094 (defun lisp-indent-function (indent-point state)
1095 "This function is the normal value of the variable `lisp-indent-function'.
1096 It is used when indenting a line within a function call, to see if the
1097 called function says anything special about how to indent the line.
1098
1099 INDENT-POINT is the position where the user typed TAB, or equivalent.
1100 Point is located at the point to indent under (for default indentation);
1101 STATE is the `parse-partial-sexp' state for that position.
1102
1103 If the current line is in a call to a Lisp function
1104 which has a non-nil property `lisp-indent-function',
1105 that specifies how to do the indentation. The property value can be
1106 * `defun', meaning indent `defun'-style;
1107 * an integer N, meaning indent the first N arguments specially
1108 like ordinary function arguments and then indent any further
1109 arguments like a body;
1110 * a function to call just as this function was called.
1111 If that function returns nil, that means it doesn't specify
1112 the indentation.
1113
1114 This function also returns nil meaning don't specify the indentation."
1115 (let ((normal-indent (current-column)))
1116 (goto-char (1+ (elt state 1)))
1117 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
1118 (if (and (elt state 2)
1119 (not (looking-at "\\sw\\|\\s_")))
1120 ;; car of form doesn't seem to be a symbol
1121 (progn
1122 (if (not (> (save-excursion (forward-line 1) (point))
1123 calculate-lisp-indent-last-sexp))
1124 (progn (goto-char calculate-lisp-indent-last-sexp)
1125 (beginning-of-line)
1126 (parse-partial-sexp (point)
1127 calculate-lisp-indent-last-sexp 0 t)))
1128 ;; Indent under the list or under the first sexp on the same
1129 ;; line as calculate-lisp-indent-last-sexp. Note that first
1130 ;; thing on that line has to be complete sexp since we are
1131 ;; inside the innermost containing sexp.
1132 (backward-prefix-chars)
1133 (current-column))
1134 (let ((function (buffer-substring (point)
1135 (progn (forward-sexp 1) (point))))
1136 method)
1137 (setq method (or (get (intern-soft function) 'lisp-indent-function)
1138 (get (intern-soft function) 'lisp-indent-hook)))
1139 (cond ((or (eq method 'defun)
1140 (and (null method)
1141 (> (length function) 3)
1142 (string-match "\\`def" function)))
1143 (lisp-indent-defform state indent-point))
1144 ((integerp method)
1145 (lisp-indent-specform method state
1146 indent-point normal-indent))
1147 (method
1148 (funcall method indent-point state)))))))
1149
1150 (defcustom lisp-body-indent 2
1151 "Number of columns to indent the second line of a `(def...)' form."
1152 :group 'lisp
1153 :type 'integer)
1154 (put 'lisp-body-indent 'safe-local-variable 'integerp)
1155
1156 (defun lisp-indent-specform (count state indent-point normal-indent)
1157 (let ((containing-form-start (elt state 1))
1158 (i count)
1159 body-indent containing-form-column)
1160 ;; Move to the start of containing form, calculate indentation
1161 ;; to use for non-distinguished forms (> count), and move past the
1162 ;; function symbol. lisp-indent-function guarantees that there is at
1163 ;; least one word or symbol character following open paren of containing
1164 ;; form.
1165 (goto-char containing-form-start)
1166 (setq containing-form-column (current-column))
1167 (setq body-indent (+ lisp-body-indent containing-form-column))
1168 (forward-char 1)
1169 (forward-sexp 1)
1170 ;; Now find the start of the last form.
1171 (parse-partial-sexp (point) indent-point 1 t)
1172 (while (and (< (point) indent-point)
1173 (condition-case ()
1174 (progn
1175 (setq count (1- count))
1176 (forward-sexp 1)
1177 (parse-partial-sexp (point) indent-point 1 t))
1178 (error nil))))
1179 ;; Point is sitting on first character of last (or count) sexp.
1180 (if (> count 0)
1181 ;; A distinguished form. If it is the first or second form use double
1182 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound
1183 ;; to 2 (the default), this just happens to work the same with if as
1184 ;; the older code, but it makes unwind-protect, condition-case,
1185 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older,
1186 ;; less hacked, behavior can be obtained by replacing below with
1187 ;; (list normal-indent containing-form-start).
1188 (if (<= (- i count) 1)
1189 (list (+ containing-form-column (* 2 lisp-body-indent))
1190 containing-form-start)
1191 (list normal-indent containing-form-start))
1192 ;; A non-distinguished form. Use body-indent if there are no
1193 ;; distinguished forms and this is the first undistinguished form,
1194 ;; or if this is the first undistinguished form and the preceding
1195 ;; distinguished form has indentation at least as great as body-indent.
1196 (if (or (and (= i 0) (= count 0))
1197 (and (= count 0) (<= body-indent normal-indent)))
1198 body-indent
1199 normal-indent))))
1200
1201 (defun lisp-indent-defform (state indent-point)
1202 (goto-char (car (cdr state)))
1203 (forward-line 1)
1204 (if (> (point) (car (cdr (cdr state))))
1205 (progn
1206 (goto-char (car (cdr state)))
1207 (+ lisp-body-indent (current-column)))))
1208
1209
1210 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented
1211 ;; like defun if the first form is placed on the next line, otherwise
1212 ;; it is indented like any other form (i.e. forms line up under first).
1213
1214 (put 'lambda 'lisp-indent-function 'defun)
1215 (put 'autoload 'lisp-indent-function 'defun)
1216 (put 'progn 'lisp-indent-function 0)
1217 (put 'prog1 'lisp-indent-function 1)
1218 (put 'prog2 'lisp-indent-function 2)
1219 (put 'save-excursion 'lisp-indent-function 0)
1220 (put 'save-window-excursion 'lisp-indent-function 0)
1221 (put 'save-selected-window 'lisp-indent-function 0)
1222 (put 'save-restriction 'lisp-indent-function 0)
1223 (put 'save-match-data 'lisp-indent-function 0)
1224 (put 'save-current-buffer 'lisp-indent-function 0)
1225 (put 'with-current-buffer 'lisp-indent-function 1)
1226 (put 'combine-after-change-calls 'lisp-indent-function 0)
1227 (put 'with-output-to-string 'lisp-indent-function 0)
1228 (put 'with-temp-file 'lisp-indent-function 1)
1229 (put 'with-temp-buffer 'lisp-indent-function 0)
1230 (put 'with-temp-message 'lisp-indent-function 1)
1231 (put 'with-syntax-table 'lisp-indent-function 1)
1232 (put 'let 'lisp-indent-function 1)
1233 (put 'let* 'lisp-indent-function 1)
1234 (put 'while 'lisp-indent-function 1)
1235 (put 'if 'lisp-indent-function 2)
1236 (put 'read-if 'lisp-indent-function 2)
1237 (put 'catch 'lisp-indent-function 1)
1238 (put 'condition-case 'lisp-indent-function 2)
1239 (put 'unwind-protect 'lisp-indent-function 1)
1240 (put 'with-output-to-temp-buffer 'lisp-indent-function 1)
1241 (put 'eval-after-load 'lisp-indent-function 1)
1242 (put 'dolist 'lisp-indent-function 1)
1243 (put 'dotimes 'lisp-indent-function 1)
1244 (put 'when 'lisp-indent-function 1)
1245 (put 'unless 'lisp-indent-function 1)
1246
1247 (defun indent-sexp (&optional endpos)
1248 "Indent each line of the list starting just after point.
1249 If optional arg ENDPOS is given, indent each line, stopping when
1250 ENDPOS is encountered."
1251 (interactive)
1252 (let ((indent-stack (list nil))
1253 (next-depth 0)
1254 ;; If ENDPOS is non-nil, use nil as STARTING-POINT
1255 ;; so that calculate-lisp-indent will find the beginning of
1256 ;; the defun we are in.
1257 ;; If ENDPOS is nil, it is safe not to scan before point
1258 ;; since every line we indent is more deeply nested than point is.
1259 (starting-point (if endpos nil (point)))
1260 (last-point (point))
1261 last-depth bol outer-loop-done inner-loop-done state this-indent)
1262 (or endpos
1263 ;; Get error now if we don't have a complete sexp after point.
1264 (save-excursion (forward-sexp 1)))
1265 (save-excursion
1266 (setq outer-loop-done nil)
1267 (while (if endpos (< (point) endpos)
1268 (not outer-loop-done))
1269 (setq last-depth next-depth
1270 inner-loop-done nil)
1271 ;; Parse this line so we can learn the state
1272 ;; to indent the next line.
1273 ;; This inner loop goes through only once
1274 ;; unless a line ends inside a string.
1275 (while (and (not inner-loop-done)
1276 (not (setq outer-loop-done (eobp))))
1277 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
1278 nil nil state))
1279 (setq next-depth (car state))
1280 ;; If the line contains a comment other than the sort
1281 ;; that is indented like code,
1282 ;; indent it now with indent-for-comment.
1283 ;; Comments indented like code are right already.
1284 ;; In any case clear the in-comment flag in the state
1285 ;; because parse-partial-sexp never sees the newlines.
1286 (if (car (nthcdr 4 state))
1287 (progn (indent-for-comment)
1288 (end-of-line)
1289 (setcar (nthcdr 4 state) nil)))
1290 ;; If this line ends inside a string,
1291 ;; go straight to next line, remaining within the inner loop,
1292 ;; and turn off the \-flag.
1293 (if (car (nthcdr 3 state))
1294 (progn
1295 (forward-line 1)
1296 (setcar (nthcdr 5 state) nil))
1297 (setq inner-loop-done t)))
1298 (and endpos
1299 (<= next-depth 0)
1300 (progn
1301 (setq indent-stack (nconc indent-stack
1302 (make-list (- next-depth) nil))
1303 last-depth (- last-depth next-depth)
1304 next-depth 0)))
1305 (forward-line 1)
1306 ;; Decide whether to exit.
1307 (if endpos
1308 ;; If we have already reached the specified end,
1309 ;; give up and do not reindent this line.
1310 (if (<= endpos (point))
1311 (setq outer-loop-done t))
1312 ;; If no specified end, we are done if we have finished one sexp.
1313 (if (<= next-depth 0)
1314 (setq outer-loop-done t)))
1315 (unless outer-loop-done
1316 (while (> last-depth next-depth)
1317 (setq indent-stack (cdr indent-stack)
1318 last-depth (1- last-depth)))
1319 (while (< last-depth next-depth)
1320 (setq indent-stack (cons nil indent-stack)
1321 last-depth (1+ last-depth)))
1322 ;; Now indent the next line according
1323 ;; to what we learned from parsing the previous one.
1324 (setq bol (point))
1325 (skip-chars-forward " \t")
1326 ;; But not if the line is blank, or just a comment
1327 ;; (except for double-semi comments; indent them as usual).
1328 (if (or (eobp) (looking-at "\\s<\\|\n"))
1329 nil
1330 (if (and (car indent-stack)
1331 (>= (car indent-stack) 0))
1332 (setq this-indent (car indent-stack))
1333 (let ((val (calculate-lisp-indent
1334 (if (car indent-stack) (- (car indent-stack))
1335 starting-point))))
1336 (if (null val)
1337 (setq this-indent val)
1338 (if (integerp val)
1339 (setcar indent-stack
1340 (setq this-indent val))
1341 (setcar indent-stack (- (car (cdr val))))
1342 (setq this-indent (car val))))))
1343 (if (and this-indent (/= (current-column) this-indent))
1344 (progn (delete-region bol (point))
1345 (indent-to this-indent)))))
1346 (or outer-loop-done
1347 (setq outer-loop-done (= (point) last-point))
1348 (setq last-point (point)))))))
1349
1350 (defun indent-pp-sexp (&optional arg)
1351 "Indent each line of the list starting just after point, or prettyprint it.
1352 A prefix argument specifies pretty-printing."
1353 (interactive "P")
1354 (if arg
1355 (save-excursion
1356 (save-restriction
1357 (narrow-to-region (point) (progn (forward-sexp 1) (point)))
1358 (pp-buffer)
1359 (goto-char (point-max))
1360 (if (eq (char-before) ?\n)
1361 (delete-char -1)))))
1362 (indent-sexp))
1363
1364 ;;;; Lisp paragraph filling commands.
1365
1366 (defcustom emacs-lisp-docstring-fill-column 65
1367 "Value of `fill-column' to use when filling a docstring.
1368 Any non-integer value means do not use a different value of
1369 `fill-column' when filling docstrings."
1370 :type '(choice (integer)
1371 (const :tag "Use the current `fill-column'" t))
1372 :group 'lisp)
1373
1374 (defun lisp-fill-paragraph (&optional justify)
1375 "Like \\[fill-paragraph], but handle Emacs Lisp comments and docstrings.
1376 If any of the current line is a comment, fill the comment or the
1377 paragraph of it that point is in, preserving the comment's indentation
1378 and initial semicolons."
1379 (interactive "P")
1380 (or (fill-comment-paragraph justify)
1381 ;; Since fill-comment-paragraph returned nil, that means we're not in
1382 ;; a comment: Point is on a program line; we are interested
1383 ;; particularly in docstring lines.
1384 ;;
1385 ;; We bind `paragraph-start' and `paragraph-separate' temporarily. They
1386 ;; are buffer-local, but we avoid changing them so that they can be set
1387 ;; to make `forward-paragraph' and friends do something the user wants.
1388 ;;
1389 ;; `paragraph-start': The `(' in the character alternative and the
1390 ;; left-singlequote plus `(' sequence after the \\| alternative prevent
1391 ;; sexps and backquoted sexps that follow a docstring from being filled
1392 ;; with the docstring. This setting has the consequence of inhibiting
1393 ;; filling many program lines that are not docstrings, which is sensible,
1394 ;; because the user probably asked to fill program lines by accident, or
1395 ;; expecting indentation (perhaps we should try to do indenting in that
1396 ;; case). The `;' and `:' stop the paragraph being filled at following
1397 ;; comment lines and at keywords (e.g., in `defcustom'). Left parens are
1398 ;; escaped to keep font-locking, filling, & paren matching in the source
1399 ;; file happy.
1400 ;;
1401 ;; `paragraph-separate': A clever regexp distinguishes the first line of
1402 ;; a docstring and identifies it as a paragraph separator, so that it
1403 ;; won't be filled. (Since the first line of documentation stands alone
1404 ;; in some contexts, filling should not alter the contents the author has
1405 ;; chosen.) Only the first line of a docstring begins with whitespace
1406 ;; and a quotation mark and ends with a period or (rarely) a comma.
1407 ;;
1408 ;; The `fill-column' is temporarily bound to
1409 ;; `emacs-lisp-docstring-fill-column' if that value is an integer.
1410 (let ((paragraph-start (concat paragraph-start
1411 "\\|\\s-*\\([(;:\"]\\|`(\\|#'(\\)"))
1412 (paragraph-separate
1413 (concat paragraph-separate "\\|\\s-*\".*[,\\.]$"))
1414 (fill-column (if (and (integerp emacs-lisp-docstring-fill-column)
1415 (derived-mode-p 'emacs-lisp-mode))
1416 emacs-lisp-docstring-fill-column
1417 fill-column)))
1418 (fill-paragraph justify))
1419 ;; Never return nil.
1420 t))
1421
1422 (defun indent-code-rigidly (start end arg &optional nochange-regexp)
1423 "Indent all lines of code, starting in the region, sideways by ARG columns.
1424 Does not affect lines starting inside comments or strings, assuming that
1425 the start of the region is not inside them.
1426
1427 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP.
1428 The last is a regexp which, if matched at the beginning of a line,
1429 means don't indent that line."
1430 (interactive "r\np")
1431 (let (state)
1432 (save-excursion
1433 (goto-char end)
1434 (setq end (point-marker))
1435 (goto-char start)
1436 (or (bolp)
1437 (setq state (parse-partial-sexp (point)
1438 (progn
1439 (forward-line 1) (point))
1440 nil nil state)))
1441 (while (< (point) end)
1442 (or (car (nthcdr 3 state))
1443 (and nochange-regexp
1444 (looking-at nochange-regexp))
1445 ;; If line does not start in string, indent it
1446 (let ((indent (current-indentation)))
1447 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
1448 (or (eolp)
1449 (indent-to (max 0 (+ indent arg)) 0))))
1450 (setq state (parse-partial-sexp (point)
1451 (progn
1452 (forward-line 1) (point))
1453 nil nil state))))))
1454
1455 (provide 'lisp-mode)
1456
1457 ;; arch-tag: 414c7f93-c245-4b77-8ed5-ed05ef7ff1bf
1458 ;;; lisp-mode.el ends here