]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/lisp-mode.el
(eval-defun): Return the evaluation result.
[gnu-emacs] / lisp / emacs-lisp / lisp-mode.el
1 ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands.
2
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: lisp, languages
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;; The base major mode for editing Lisp code (used also for Emacs Lisp).
28 ;; This mode is documented in the Emacs manual
29
30 ;;; Code:
31
32 (defvar lisp-mode-syntax-table nil "")
33 (defvar emacs-lisp-mode-syntax-table nil "")
34 (defvar lisp-mode-abbrev-table nil "")
35
36 (if (not emacs-lisp-mode-syntax-table)
37 (let ((i 0))
38 (setq emacs-lisp-mode-syntax-table (make-syntax-table))
39 (while (< i ?0)
40 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
41 (setq i (1+ i)))
42 (setq i (1+ ?9))
43 (while (< i ?A)
44 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
45 (setq i (1+ i)))
46 (setq i (1+ ?Z))
47 (while (< i ?a)
48 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
49 (setq i (1+ i)))
50 (setq i (1+ ?z))
51 (while (< i 128)
52 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
53 (setq i (1+ i)))
54 (modify-syntax-entry ? " " emacs-lisp-mode-syntax-table)
55 (modify-syntax-entry ?\t " " emacs-lisp-mode-syntax-table)
56 (modify-syntax-entry ?\f " " emacs-lisp-mode-syntax-table)
57 (modify-syntax-entry ?\n "> " emacs-lisp-mode-syntax-table)
58 ;; Give CR the same syntax as newline, for selective-display.
59 (modify-syntax-entry ?\^m "> " emacs-lisp-mode-syntax-table)
60 (modify-syntax-entry ?\; "< " emacs-lisp-mode-syntax-table)
61 (modify-syntax-entry ?` "' " emacs-lisp-mode-syntax-table)
62 (modify-syntax-entry ?' "' " emacs-lisp-mode-syntax-table)
63 (modify-syntax-entry ?, "' " emacs-lisp-mode-syntax-table)
64 ;; Used to be singlequote; changed for flonums.
65 (modify-syntax-entry ?. "_ " emacs-lisp-mode-syntax-table)
66 (modify-syntax-entry ?# "' " emacs-lisp-mode-syntax-table)
67 (modify-syntax-entry ?\" "\" " emacs-lisp-mode-syntax-table)
68 (modify-syntax-entry ?\\ "\\ " emacs-lisp-mode-syntax-table)
69 (modify-syntax-entry ?\( "() " emacs-lisp-mode-syntax-table)
70 (modify-syntax-entry ?\) ")( " emacs-lisp-mode-syntax-table)
71 (modify-syntax-entry ?\[ "(] " emacs-lisp-mode-syntax-table)
72 (modify-syntax-entry ?\] ")[ " emacs-lisp-mode-syntax-table)))
73
74 (if (not lisp-mode-syntax-table)
75 (progn (setq lisp-mode-syntax-table
76 (copy-syntax-table emacs-lisp-mode-syntax-table))
77 (modify-syntax-entry ?\| "\" " lisp-mode-syntax-table)
78 (modify-syntax-entry ?\[ "_ " lisp-mode-syntax-table)
79 (modify-syntax-entry ?\] "_ " lisp-mode-syntax-table)))
80
81 (define-abbrev-table 'lisp-mode-abbrev-table ())
82
83 (defvar lisp-imenu-generic-expression
84 '(
85 (nil
86 "^\\s-*(def\\(un\\|subst\\|macro\\|advice\\|ine-skeleton\\)\\s-+\\([-A-Za-z0-9+*|:/]+\\)" 2)
87 ("Variables"
88 "^\\s-*(def\\(var\\|const\\|custom\\)\\s-+\\([-A-Za-z0-9+*|:/]+\\)" 2)
89 ("Types"
90 "^\\s-*(def\\(group\\|type\\|struct\\|class\\|ine-condition\\)\\s-+\\([-A-Za-z0-9+*|:/]+\\)"
91 2))
92
93 "Imenu generic expression for Lisp mode. See `imenu-generic-expression'.")
94
95 (defun lisp-mode-variables (lisp-syntax)
96 (cond (lisp-syntax
97 (set-syntax-table lisp-mode-syntax-table)))
98 (setq local-abbrev-table lisp-mode-abbrev-table)
99 (make-local-variable 'paragraph-start)
100 (setq paragraph-start (concat page-delimiter "\\|$" ))
101 (make-local-variable 'paragraph-separate)
102 (setq paragraph-separate paragraph-start)
103 (make-local-variable 'paragraph-ignore-fill-prefix)
104 (setq paragraph-ignore-fill-prefix t)
105 (make-local-variable 'fill-paragraph-function)
106 (setq fill-paragraph-function 'lisp-fill-paragraph)
107 ;; Adaptive fill mode gets in the way of auto-fill,
108 ;; and should make no difference for explicit fill
109 ;; because lisp-fill-paragraph should do the job.
110 (make-local-variable 'adaptive-fill-mode)
111 (setq adaptive-fill-mode nil)
112 (make-local-variable 'normal-auto-fill-function)
113 (setq normal-auto-fill-function 'lisp-mode-auto-fill)
114 (make-local-variable 'indent-line-function)
115 (setq indent-line-function 'lisp-indent-line)
116 (make-local-variable 'indent-region-function)
117 (setq indent-region-function 'lisp-indent-region)
118 (make-local-variable 'parse-sexp-ignore-comments)
119 (setq parse-sexp-ignore-comments t)
120 (make-local-variable 'outline-regexp)
121 (setq outline-regexp ";;; \\|(....")
122 (make-local-variable 'comment-start)
123 (setq comment-start ";")
124 (make-local-variable 'comment-start-skip)
125 ;; Look within the line for a ; following an even number of backslashes
126 ;; after either a non-backslash or the line beginning.
127 (setq comment-start-skip "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\);+ *")
128 (make-local-variable 'comment-column)
129 (setq comment-column 40)
130 (make-local-variable 'comment-indent-function)
131 (setq comment-indent-function 'lisp-comment-indent)
132 (make-local-variable 'imenu-generic-expression)
133 (setq imenu-generic-expression lisp-imenu-generic-expression))
134 \f
135 (defvar shared-lisp-mode-map ()
136 "Keymap for commands shared by all sorts of Lisp modes.")
137
138 (if shared-lisp-mode-map
139 ()
140 (setq shared-lisp-mode-map (make-sparse-keymap))
141 (define-key shared-lisp-mode-map "\e\C-q" 'indent-sexp)
142 (define-key shared-lisp-mode-map "\177" 'backward-delete-char-untabify))
143
144 (defvar emacs-lisp-mode-map ()
145 "Keymap for Emacs Lisp mode.
146 All commands in `shared-lisp-mode-map' are inherited by this map.")
147
148 (if emacs-lisp-mode-map
149 ()
150 (let ((map (make-sparse-keymap "Emacs-Lisp")))
151 (setq emacs-lisp-mode-map (make-sparse-keymap))
152 (set-keymap-parent emacs-lisp-mode-map shared-lisp-mode-map)
153 (define-key emacs-lisp-mode-map "\e\t" 'lisp-complete-symbol)
154 (define-key emacs-lisp-mode-map "\e\C-x" 'eval-defun)
155 (define-key emacs-lisp-mode-map [menu-bar] (make-sparse-keymap))
156 (define-key emacs-lisp-mode-map [menu-bar emacs-lisp]
157 (cons "Emacs-Lisp" map))
158 (define-key map [edebug-defun]
159 '("Instrument Function for Debugging" . edebug-defun))
160 (define-key map [byte-recompile]
161 '("Byte-recompile Directory..." . byte-recompile-directory))
162 (define-key map [emacs-byte-compile-and-load]
163 '("Byte-compile And Load" . emacs-lisp-byte-compile-and-load))
164 (define-key map [byte-compile]
165 '("Byte-compile This File" . emacs-lisp-byte-compile))
166 (define-key map [separator-eval] '("--"))
167 (define-key map [eval-buffer] '("Evaluate Buffer" . eval-current-buffer))
168 (define-key map [eval-region] '("Evaluate Region" . eval-region))
169 (define-key map [eval-sexp] '("Evaluate Last S-expression" . eval-last-sexp))
170 (define-key map [separator-format] '("--"))
171 (define-key map [comment-region] '("Comment Out Region" . comment-region))
172 (define-key map [indent-region] '("Indent Region" . indent-region))
173 (define-key map [indent-line] '("Indent Line" . lisp-indent-line))
174 (put 'eval-region 'menu-enable 'mark-active)
175 (put 'comment-region 'menu-enable 'mark-active)
176 (put 'indent-region 'menu-enable 'mark-active)))
177
178 (defun emacs-lisp-byte-compile ()
179 "Byte compile the file containing the current buffer."
180 (interactive)
181 (if buffer-file-name
182 (byte-compile-file buffer-file-name)
183 (error "The buffer must be saved in a file first")))
184
185 (defun emacs-lisp-byte-compile-and-load ()
186 "Byte-compile the current file (if it has changed), then load compiled code."
187 (interactive)
188 (or buffer-file-name
189 (error "The buffer must be saved in a file first"))
190 (require 'bytecomp)
191 ;; Recompile if file or buffer has changed since last compilation.
192 (if (and (buffer-modified-p)
193 (y-or-n-p (format "save buffer %s first? " (buffer-name))))
194 (save-buffer))
195 (let ((compiled-file-name (byte-compile-dest-file buffer-file-name)))
196 (if (file-newer-than-file-p compiled-file-name buffer-file-name)
197 (load-file compiled-file-name)
198 (byte-compile-file buffer-file-name t))))
199
200 (defun emacs-lisp-mode ()
201 "Major mode for editing Lisp code to run in Emacs.
202 Commands:
203 Delete converts tabs to spaces as it moves back.
204 Blank lines separate paragraphs. Semicolons start comments.
205 \\{emacs-lisp-mode-map}
206 Entry to this mode calls the value of `emacs-lisp-mode-hook'
207 if that value is non-nil."
208 (interactive)
209 (kill-all-local-variables)
210 (use-local-map emacs-lisp-mode-map)
211 (set-syntax-table emacs-lisp-mode-syntax-table)
212 (setq major-mode 'emacs-lisp-mode)
213 (setq mode-name "Emacs-Lisp")
214 (lisp-mode-variables nil)
215 (setq imenu-case-fold-search nil)
216 (run-hooks 'emacs-lisp-mode-hook))
217
218 (defvar lisp-mode-map ()
219 "Keymap for ordinary Lisp mode.
220 All commands in `shared-lisp-mode-map' are inherited by this map.")
221
222 (if lisp-mode-map
223 ()
224 (setq lisp-mode-map (make-sparse-keymap))
225 (set-keymap-parent lisp-mode-map shared-lisp-mode-map)
226 (define-key lisp-mode-map "\e\C-x" 'lisp-eval-defun)
227 (define-key lisp-mode-map "\C-c\C-z" 'run-lisp))
228
229 (defun lisp-mode ()
230 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
231 Commands:
232 Delete converts tabs to spaces as it moves back.
233 Blank lines separate paragraphs. Semicolons start comments.
234 \\{lisp-mode-map}
235 Note that `run-lisp' may be used either to start an inferior Lisp job
236 or to switch back to an existing one.
237
238 Entry to this mode calls the value of `lisp-mode-hook'
239 if that value is non-nil."
240 (interactive)
241 (kill-all-local-variables)
242 (use-local-map lisp-mode-map)
243 (setq major-mode 'lisp-mode)
244 (setq mode-name "Lisp")
245 (lisp-mode-variables t)
246 (setq imenu-case-fold-search t)
247 (set-syntax-table lisp-mode-syntax-table)
248 (run-hooks 'lisp-mode-hook))
249
250 ;; This will do unless shell.el is loaded.
251 (defun lisp-eval-defun nil
252 "Send the current defun to the Lisp process made by \\[run-lisp]."
253 (interactive)
254 (error "Process lisp does not exist"))
255
256 (defvar lisp-interaction-mode-map ()
257 "Keymap for Lisp Interaction moe.
258 All commands in `shared-lisp-mode-map' are inherited by this map.")
259
260 (if lisp-interaction-mode-map
261 ()
262 (setq lisp-interaction-mode-map (make-sparse-keymap))
263 (set-keymap-parent lisp-interaction-mode-map shared-lisp-mode-map)
264 (define-key lisp-interaction-mode-map "\e\C-x" 'eval-defun)
265 (define-key lisp-interaction-mode-map "\e\t" 'lisp-complete-symbol)
266 (define-key lisp-interaction-mode-map "\n" 'eval-print-last-sexp))
267
268 (defun lisp-interaction-mode ()
269 "Major mode for typing and evaluating Lisp forms.
270 Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression
271 before point, and prints its value into the buffer, advancing point.
272
273 Commands:
274 Delete converts tabs to spaces as it moves back.
275 Paragraphs are separated only by blank lines.
276 Semicolons start comments.
277 \\{lisp-interaction-mode-map}
278 Entry to this mode calls the value of `lisp-interaction-mode-hook'
279 if that value is non-nil."
280 (interactive)
281 (kill-all-local-variables)
282 (use-local-map lisp-interaction-mode-map)
283 (setq major-mode 'lisp-interaction-mode)
284 (setq mode-name "Lisp Interaction")
285 (set-syntax-table emacs-lisp-mode-syntax-table)
286 (lisp-mode-variables nil)
287 (run-hooks 'lisp-interaction-mode-hook))
288
289 (defun eval-print-last-sexp ()
290 "Evaluate sexp before point; print value into current buffer."
291 (interactive)
292 (let ((standard-output (current-buffer)))
293 (terpri)
294 (eval-last-sexp t)
295 (terpri)))
296 \f
297 (defun eval-last-sexp (eval-last-sexp-arg-internal)
298 "Evaluate sexp before point; print value in minibuffer.
299 With argument, print output into current buffer."
300 (interactive "P")
301 (let ((standard-output (if eval-last-sexp-arg-internal (current-buffer) t)))
302 (prin1 (eval (let ((stab (syntax-table))
303 (opoint (point))
304 ignore-quotes
305 expr)
306 (unwind-protect
307 (save-excursion
308 (set-syntax-table emacs-lisp-mode-syntax-table)
309 ;; If this sexp appears to be enclosed in `...'
310 ;; then ignore the surrounding quotes.
311 (setq ignore-quotes
312 (or (eq (following-char) ?\')
313 (eq (preceding-char) ?\')))
314 (forward-sexp -1)
315 (save-restriction
316 ;; vladimir@cs.ualberta.ca 30-Jul-1997: skip ` in
317 ;; `variable' so that the value is returned, not the
318 ;; name
319 (if (and ignore-quotes
320 (eq (following-char) ?`))
321 (forward-char))
322 (narrow-to-region (point-min) opoint)
323 (setq expr (read (current-buffer)))
324 ;; If it's an (interactive ...) form, it's more
325 ;; useful to show how an interactive call would
326 ;; use it.
327 (and (consp expr)
328 (eq (car expr) 'interactive)
329 (setq expr
330 (list 'call-interactively
331 (list 'quote
332 (list 'lambda
333 '(&rest args)
334 expr
335 'args)))))
336 expr))
337 (set-syntax-table stab)))))))
338
339 (defun eval-defun (eval-defun-arg-internal)
340 "Evaluate defun that point is in or before.
341 Print value in minibuffer.
342 With argument, insert value in current buffer after the defun.
343 Return the result of evaluation."
344 (interactive "P")
345 (let ((standard-output (if eval-defun-arg-internal (current-buffer) t))
346 beg end form)
347 ;; Read the form from the buffer, and record where it ends.
348 (save-excursion
349 (end-of-defun)
350 (beginning-of-defun)
351 (setq beg (point))
352 (setq form (read (current-buffer)))
353 (setq end (point)))
354 ;; Alter the form if necessary.
355 (cond ((and (eq (car form) 'defvar)
356 (cdr-safe (cdr-safe form)))
357 ;; Force variable to be bound.
358 (setq form (cons 'defconst (cdr form))))
359 ((and (eq (car form) 'defcustom)
360 (default-boundp (nth 1 form)))
361 ;; Force variable to be bound.
362 (set-default (nth 1 form) (eval (nth 2 form)))))
363 ;; Now arrange for eval-region to "read" the (possibly) altered form.
364 ;; eval-region handles recording which file defines a function or variable.
365 (save-excursion
366 (eval-region beg end standard-output
367 #'(lambda (ignore)
368 ;; Skipping to the end of the specified region
369 ;; will make eval-region return.
370 (goto-char end)
371 form))
372 ;; The result of evaluation has been put onto VALUES.
373 ;; So return it.
374 (car values))))
375 \f
376 (defun lisp-comment-indent ()
377 (if (looking-at "\\s<\\s<\\s<")
378 (current-column)
379 (if (looking-at "\\s<\\s<")
380 (let ((tem (or (calculate-lisp-indent) (current-column))))
381 (if (listp tem) (car tem) tem))
382 (skip-chars-backward " \t")
383 (max (if (bolp) 0 (1+ (current-column)))
384 comment-column))))
385
386 (defun lisp-mode-auto-fill ()
387 (if (> (current-column) (current-fill-column))
388 (if (save-excursion
389 (nth 4 (parse-partial-sexp (save-excursion
390 (beginning-of-defun)
391 (point))
392 (point))))
393 (do-auto-fill)
394 (let ((comment-start nil) (comment-start-skip nil))
395 (do-auto-fill)))))
396
397 (defvar lisp-indent-offset nil "")
398 (defvar lisp-indent-function 'lisp-indent-function "")
399
400 (defun lisp-indent-line (&optional whole-exp)
401 "Indent current line as Lisp code.
402 With argument, indent any additional lines of the same expression
403 rigidly along with this one."
404 (interactive "P")
405 (let ((indent (calculate-lisp-indent)) shift-amt beg end
406 (pos (- (point-max) (point))))
407 (beginning-of-line)
408 (setq beg (point))
409 (skip-chars-forward " \t")
410 (if (or (null indent) (looking-at "\\s<\\s<\\s<"))
411 ;; Don't alter indentation of a ;;; comment line
412 ;; or a line that starts in a string.
413 (goto-char (- (point-max) pos))
414 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<")))
415 ;; Single-semicolon comment lines should be indented
416 ;; as comment lines, not as code.
417 (progn (indent-for-comment) (forward-char -1))
418 (if (listp indent) (setq indent (car indent)))
419 (setq shift-amt (- indent (current-column)))
420 (if (zerop shift-amt)
421 nil
422 (delete-region beg (point))
423 (indent-to indent)))
424 ;; If initial point was within line's indentation,
425 ;; position after the indentation. Else stay at same point in text.
426 (if (> (- (point-max) pos) (point))
427 (goto-char (- (point-max) pos)))
428 ;; If desired, shift remaining lines of expression the same amount.
429 (and whole-exp (not (zerop shift-amt))
430 (save-excursion
431 (goto-char beg)
432 (forward-sexp 1)
433 (setq end (point))
434 (goto-char beg)
435 (forward-line 1)
436 (setq beg (point))
437 (> end beg))
438 (indent-code-rigidly beg end shift-amt)))))
439
440 (defvar calculate-lisp-indent-last-sexp)
441
442 (defun calculate-lisp-indent (&optional parse-start)
443 "Return appropriate indentation for current line as Lisp code.
444 In usual case returns an integer: the column to indent to.
445 If the value is nil, that means don't change the indentation
446 because the line starts inside a string.
447
448 The value can also be a list of the form (COLUMN CONTAINING-SEXP-START).
449 This means that following lines at the same level of indentation
450 should not necessarily be indented the same as this line.
451 Then COLUMN is the column to indent to, and CONTAINING-SEXP-START
452 is the buffer position of the start of the containing expression."
453 (save-excursion
454 (beginning-of-line)
455 (let ((indent-point (point))
456 state paren-depth
457 ;; setting this to a number inhibits calling hook
458 (desired-indent nil)
459 (retry t)
460 calculate-lisp-indent-last-sexp containing-sexp)
461 (if parse-start
462 (goto-char parse-start)
463 (beginning-of-defun))
464 ;; Find outermost containing sexp
465 (while (< (point) indent-point)
466 (setq state (parse-partial-sexp (point) indent-point 0)))
467 ;; Find innermost containing sexp
468 (while (and retry
469 state
470 (> (setq paren-depth (elt state 0)) 0))
471 (setq retry nil)
472 (setq calculate-lisp-indent-last-sexp (elt state 2))
473 (setq containing-sexp (elt state 1))
474 ;; Position following last unclosed open.
475 (goto-char (1+ containing-sexp))
476 ;; Is there a complete sexp since then?
477 (if (and calculate-lisp-indent-last-sexp
478 (> calculate-lisp-indent-last-sexp (point)))
479 ;; Yes, but is there a containing sexp after that?
480 (let ((peek (parse-partial-sexp calculate-lisp-indent-last-sexp
481 indent-point 0)))
482 (if (setq retry (car (cdr peek))) (setq state peek)))))
483 (if retry
484 nil
485 ;; Innermost containing sexp found
486 (goto-char (1+ containing-sexp))
487 (if (not calculate-lisp-indent-last-sexp)
488 ;; indent-point immediately follows open paren.
489 ;; Don't call hook.
490 (setq desired-indent (current-column))
491 ;; Find the start of first element of containing sexp.
492 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
493 (cond ((looking-at "\\s(")
494 ;; First element of containing sexp is a list.
495 ;; Indent under that list.
496 )
497 ((> (save-excursion (forward-line 1) (point))
498 calculate-lisp-indent-last-sexp)
499 ;; This is the first line to start within the containing sexp.
500 ;; It's almost certainly a function call.
501 (if (= (point) calculate-lisp-indent-last-sexp)
502 ;; Containing sexp has nothing before this line
503 ;; except the first element. Indent under that element.
504 nil
505 ;; Skip the first element, find start of second (the first
506 ;; argument of the function call) and indent under.
507 (progn (forward-sexp 1)
508 (parse-partial-sexp (point)
509 calculate-lisp-indent-last-sexp
510 0 t)))
511 (backward-prefix-chars))
512 (t
513 ;; Indent beneath first sexp on same line as
514 ;; calculate-lisp-indent-last-sexp. Again, it's
515 ;; almost certainly a function call.
516 (goto-char calculate-lisp-indent-last-sexp)
517 (beginning-of-line)
518 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp
519 0 t)
520 (backward-prefix-chars)))))
521 ;; Point is at the point to indent under unless we are inside a string.
522 ;; Call indentation hook except when overridden by lisp-indent-offset
523 ;; or if the desired indentation has already been computed.
524 (let ((normal-indent (current-column)))
525 (cond ((elt state 3)
526 ;; Inside a string, don't change indentation.
527 nil)
528 ((and (integerp lisp-indent-offset) containing-sexp)
529 ;; Indent by constant offset
530 (goto-char containing-sexp)
531 (+ (current-column) lisp-indent-offset))
532 (desired-indent)
533 ((and (boundp 'lisp-indent-function)
534 lisp-indent-function
535 (not retry))
536 (or (funcall lisp-indent-function indent-point state)
537 normal-indent))
538 (t
539 normal-indent))))))
540
541 (defun lisp-indent-function (indent-point state)
542 (let ((normal-indent (current-column)))
543 (goto-char (1+ (elt state 1)))
544 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp 0 t)
545 (if (and (elt state 2)
546 (not (looking-at "\\sw\\|\\s_")))
547 ;; car of form doesn't seem to be a a symbol
548 (progn
549 (if (not (> (save-excursion (forward-line 1) (point))
550 calculate-lisp-indent-last-sexp))
551 (progn (goto-char calculate-lisp-indent-last-sexp)
552 (beginning-of-line)
553 (parse-partial-sexp (point)
554 calculate-lisp-indent-last-sexp 0 t)))
555 ;; Indent under the list or under the first sexp on the same
556 ;; line as calculate-lisp-indent-last-sexp. Note that first
557 ;; thing on that line has to be complete sexp since we are
558 ;; inside the innermost containing sexp.
559 (backward-prefix-chars)
560 (current-column))
561 (let ((function (buffer-substring (point)
562 (progn (forward-sexp 1) (point))))
563 method)
564 (setq method (or (get (intern-soft function) 'lisp-indent-function)
565 (get (intern-soft function) 'lisp-indent-hook)))
566 (cond ((or (eq method 'defun)
567 (and (null method)
568 (> (length function) 3)
569 (string-match "\\`def" function)))
570 (lisp-indent-defform state indent-point))
571 ((integerp method)
572 (lisp-indent-specform method state
573 indent-point normal-indent))
574 (method
575 (funcall method state indent-point)))))))
576
577 (defvar lisp-body-indent 2
578 "Number of columns to indent the second line of a `(def...)' form.")
579
580 (defun lisp-indent-specform (count state indent-point normal-indent)
581 (let ((containing-form-start (elt state 1))
582 (i count)
583 body-indent containing-form-column)
584 ;; Move to the start of containing form, calculate indentation
585 ;; to use for non-distinguished forms (> count), and move past the
586 ;; function symbol. lisp-indent-function guarantees that there is at
587 ;; least one word or symbol character following open paren of containing
588 ;; form.
589 (goto-char containing-form-start)
590 (setq containing-form-column (current-column))
591 (setq body-indent (+ lisp-body-indent containing-form-column))
592 (forward-char 1)
593 (forward-sexp 1)
594 ;; Now find the start of the last form.
595 (parse-partial-sexp (point) indent-point 1 t)
596 (while (and (< (point) indent-point)
597 (condition-case ()
598 (progn
599 (setq count (1- count))
600 (forward-sexp 1)
601 (parse-partial-sexp (point) indent-point 1 t))
602 (error nil))))
603 ;; Point is sitting on first character of last (or count) sexp.
604 (if (> count 0)
605 ;; A distinguished form. If it is the first or second form use double
606 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound
607 ;; to 2 (the default), this just happens to work the same with if as
608 ;; the older code, but it makes unwind-protect, condition-case,
609 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older,
610 ;; less hacked, behavior can be obtained by replacing below with
611 ;; (list normal-indent containing-form-start).
612 (if (<= (- i count) 1)
613 (list (+ containing-form-column (* 2 lisp-body-indent))
614 containing-form-start)
615 (list normal-indent containing-form-start))
616 ;; A non-distinguished form. Use body-indent if there are no
617 ;; distinguished forms and this is the first undistinguished form,
618 ;; or if this is the first undistinguished form and the preceding
619 ;; distinguished form has indentation at least as great as body-indent.
620 (if (or (and (= i 0) (= count 0))
621 (and (= count 0) (<= body-indent normal-indent)))
622 body-indent
623 normal-indent))))
624
625 (defun lisp-indent-defform (state indent-point)
626 (goto-char (car (cdr state)))
627 (forward-line 1)
628 (if (> (point) (car (cdr (cdr state))))
629 (progn
630 (goto-char (car (cdr state)))
631 (+ lisp-body-indent (current-column)))))
632
633 \f
634 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented
635 ;; like defun if the first form is placed on the next line, otherwise
636 ;; it is indented like any other form (i.e. forms line up under first).
637
638 (put 'lambda 'lisp-indent-function 'defun)
639 (put 'autoload 'lisp-indent-function 'defun)
640 (put 'progn 'lisp-indent-function 0)
641 (put 'prog1 'lisp-indent-function 1)
642 (put 'prog2 'lisp-indent-function 2)
643 (put 'save-excursion 'lisp-indent-function 0)
644 (put 'save-window-excursion 'lisp-indent-function 0)
645 (put 'save-selected-window 'lisp-indent-function 0)
646 (put 'save-restriction 'lisp-indent-function 0)
647 (put 'save-match-data 'lisp-indent-function 0)
648 (put 'save-current-buffer 'lisp-indent-function 0)
649 (put 'with-current-buffer 'lisp-indent-function 1)
650 (put 'combine-after-change-calls 'lisp-indent-function 0)
651 (put 'with-output-to-string 'lisp-indent-function 0)
652 (put 'with-temp-file 'lisp-indent-function 1)
653 (put 'with-temp-buffer 'lisp-indent-function 0)
654 (put 'let 'lisp-indent-function 1)
655 (put 'let* 'lisp-indent-function 1)
656 (put 'while 'lisp-indent-function 1)
657 (put 'if 'lisp-indent-function 2)
658 (put 'catch 'lisp-indent-function 1)
659 (put 'condition-case 'lisp-indent-function 2)
660 (put 'unwind-protect 'lisp-indent-function 1)
661 (put 'with-output-to-temp-buffer 'lisp-indent-function 1)
662 (put 'eval-after-load 'lisp-indent-function 1)
663
664 (defun indent-sexp (&optional endpos)
665 "Indent each line of the list starting just after point.
666 If optional arg ENDPOS is given, indent each line, stopping when
667 ENDPOS is encountered."
668 (interactive)
669 (let ((indent-stack (list nil))
670 (next-depth 0)
671 ;; If ENDPOS is non-nil, use nil as STARTING-POINT
672 ;; so that calculate-lisp-indent will find the beginning of
673 ;; the defun we are in.
674 ;; If ENDPOS is nil, it is safe not to scan before point
675 ;; since every line we indent is more deeply nested than point is.
676 (starting-point (if endpos nil (point)))
677 (last-point (point))
678 last-depth bol outer-loop-done inner-loop-done state this-indent)
679 (or endpos
680 ;; Get error now if we don't have a complete sexp after point.
681 (save-excursion (forward-sexp 1)))
682 (save-excursion
683 (setq outer-loop-done nil)
684 (while (if endpos (< (point) endpos)
685 (not outer-loop-done))
686 (setq last-depth next-depth
687 inner-loop-done nil)
688 ;; Parse this line so we can learn the state
689 ;; to indent the next line.
690 ;; This inner loop goes through only once
691 ;; unless a line ends inside a string.
692 (while (and (not inner-loop-done)
693 (not (setq outer-loop-done (eobp))))
694 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
695 nil nil state))
696 (setq next-depth (car state))
697 ;; If the line contains a comment other than the sort
698 ;; that is indented like code,
699 ;; indent it now with indent-for-comment.
700 ;; Comments indented like code are right already.
701 ;; In any case clear the in-comment flag in the state
702 ;; because parse-partial-sexp never sees the newlines.
703 (if (car (nthcdr 4 state))
704 (progn (indent-for-comment)
705 (end-of-line)
706 (setcar (nthcdr 4 state) nil)))
707 ;; If this line ends inside a string,
708 ;; go straight to next line, remaining within the inner loop,
709 ;; and turn off the \-flag.
710 (if (car (nthcdr 3 state))
711 (progn
712 (forward-line 1)
713 (setcar (nthcdr 5 state) nil))
714 (setq inner-loop-done t)))
715 (and endpos
716 (<= next-depth 0)
717 (progn
718 (setq indent-stack (append indent-stack
719 (make-list (- next-depth) nil))
720 last-depth (- last-depth next-depth)
721 next-depth 0)))
722 (or outer-loop-done endpos
723 (setq outer-loop-done (<= next-depth 0)))
724 (if outer-loop-done
725 (forward-line 1)
726 (while (> last-depth next-depth)
727 (setq indent-stack (cdr indent-stack)
728 last-depth (1- last-depth)))
729 (while (< last-depth next-depth)
730 (setq indent-stack (cons nil indent-stack)
731 last-depth (1+ last-depth)))
732 ;; Now go to the next line and indent it according
733 ;; to what we learned from parsing the previous one.
734 (forward-line 1)
735 (setq bol (point))
736 (skip-chars-forward " \t")
737 ;; But not if the line is blank, or just a comment
738 ;; (except for double-semi comments; indent them as usual).
739 (if (or (eobp) (looking-at "\\s<\\|\n"))
740 nil
741 (if (and (car indent-stack)
742 (>= (car indent-stack) 0))
743 (setq this-indent (car indent-stack))
744 (let ((val (calculate-lisp-indent
745 (if (car indent-stack) (- (car indent-stack))
746 starting-point))))
747 (if (null val)
748 (setq this-indent val)
749 (if (integerp val)
750 (setcar indent-stack
751 (setq this-indent val))
752 (setcar indent-stack (- (car (cdr val))))
753 (setq this-indent (car val))))))
754 (if (and this-indent (/= (current-column) this-indent))
755 (progn (delete-region bol (point))
756 (indent-to this-indent)))))
757 (or outer-loop-done
758 (setq outer-loop-done (= (point) last-point))
759 (setq last-point (point)))))))
760
761 ;; Indent every line whose first char is between START and END inclusive.
762 (defun lisp-indent-region (start end)
763 (save-excursion
764 (let ((endmark (copy-marker end)))
765 (goto-char start)
766 (and (bolp) (not (eolp))
767 (lisp-indent-line))
768 (indent-sexp endmark)
769 (set-marker endmark nil))))
770 \f
771 ;;;; Lisp paragraph filling commands.
772
773 (defun lisp-fill-paragraph (&optional justify)
774 "Like \\[fill-paragraph], but handle Emacs Lisp comments.
775 If any of the current line is a comment, fill the comment or the
776 paragraph of it that point is in, preserving the comment's indentation
777 and initial semicolons."
778 (interactive "P")
779 (let (
780 ;; Non-nil if the current line contains a comment.
781 has-comment
782
783 ;; Non-nil if the current line contains code and a comment.
784 has-code-and-comment
785
786 ;; If has-comment, the appropriate fill-prefix for the comment.
787 comment-fill-prefix
788 )
789
790 ;; Figure out what kind of comment we are looking at.
791 (save-excursion
792 (beginning-of-line)
793 (cond
794
795 ;; A line with nothing but a comment on it?
796 ((looking-at "[ \t]*;[; \t]*")
797 (setq has-comment t
798 comment-fill-prefix (buffer-substring (match-beginning 0)
799 (match-end 0))))
800
801 ;; A line with some code, followed by a comment? Remember that the
802 ;; semi which starts the comment shouldn't be part of a string or
803 ;; character.
804 ((condition-case nil
805 (save-restriction
806 (narrow-to-region (point-min)
807 (save-excursion (end-of-line) (point)))
808 (while (not (looking-at ";\\|$"))
809 (skip-chars-forward "^;\n\"\\\\?")
810 (cond
811 ((eq (char-after (point)) ?\\) (forward-char 2))
812 ((memq (char-after (point)) '(?\" ??)) (forward-sexp 1))))
813 (looking-at ";+[\t ]*"))
814 (error nil))
815 (setq has-comment t has-code-and-comment t)
816 (setq comment-fill-prefix
817 (concat (make-string (/ (current-column) 8) ?\t)
818 (make-string (% (current-column) 8) ?\ )
819 (buffer-substring (match-beginning 0) (match-end 0)))))))
820
821 (if (not has-comment)
822 ;; `paragraph-start' is set here (not in the buffer-local
823 ;; variable so that `forward-paragraph' et al work as
824 ;; expected) so that filling (doc) strings works sensibly.
825 ;; Adding the opening paren to avoid the following sexp being
826 ;; filled means that sexps generally aren't filled as normal
827 ;; text, which is probably sensible. The `;' and `:' stop the
828 ;; filled para at following comment lines and keywords
829 ;; (typically in `defcustom').
830 (let ((paragraph-start (concat paragraph-start
831 "\\|\\s-*[\(;:\"]")))
832 (fill-paragraph justify))
833
834 ;; Narrow to include only the comment, and then fill the region.
835 (save-excursion
836 (save-restriction
837 (beginning-of-line)
838 (narrow-to-region
839 ;; Find the first line we should include in the region to fill.
840 (save-excursion
841 (while (and (zerop (forward-line -1))
842 (looking-at "^[ \t]*;")))
843 ;; We may have gone too far. Go forward again.
844 (or (looking-at ".*;")
845 (forward-line 1))
846 (point))
847 ;; Find the beginning of the first line past the region to fill.
848 (save-excursion
849 (while (progn (forward-line 1)
850 (looking-at "^[ \t]*;")))
851 (point)))
852
853 ;; Lines with only semicolons on them can be paragraph boundaries.
854 (let* ((paragraph-start (concat paragraph-start "\\|[ \t;]*$"))
855 (paragraph-separate (concat paragraph-start "\\|[ \t;]*$"))
856 (paragraph-ignore-fill-prefix nil)
857 (fill-prefix comment-fill-prefix)
858 (after-line (if has-code-and-comment
859 (save-excursion
860 (forward-line 1) (point))))
861 (end (progn
862 (forward-paragraph)
863 (or (bolp) (newline 1))
864 (point)))
865 ;; If this comment starts on a line with code,
866 ;; include that like in the filling.
867 (beg (progn (backward-paragraph)
868 (if (eq (point) after-line)
869 (forward-line -1))
870 (point))))
871 (fill-region-as-paragraph beg end
872 justify nil
873 (save-excursion
874 (goto-char beg)
875 (if (looking-at fill-prefix)
876 nil
877 (re-search-forward comment-start-skip)
878 (point))))))))
879 t))
880 \f
881 (defun indent-code-rigidly (start end arg &optional nochange-regexp)
882 "Indent all lines of code, starting in the region, sideways by ARG columns.
883 Does not affect lines starting inside comments or strings, assuming that
884 the start of the region is not inside them.
885
886 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP.
887 The last is a regexp which, if matched at the beginning of a line,
888 means don't indent that line."
889 (interactive "r\np")
890 (let (state)
891 (save-excursion
892 (goto-char end)
893 (setq end (point-marker))
894 (goto-char start)
895 (or (bolp)
896 (setq state (parse-partial-sexp (point)
897 (progn
898 (forward-line 1) (point))
899 nil nil state)))
900 (while (< (point) end)
901 (or (car (nthcdr 3 state))
902 (and nochange-regexp
903 (looking-at nochange-regexp))
904 ;; If line does not start in string, indent it
905 (let ((indent (current-indentation)))
906 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
907 (or (eolp)
908 (indent-to (max 0 (+ indent arg)) 0))))
909 (setq state (parse-partial-sexp (point)
910 (progn
911 (forward-line 1) (point))
912 nil nil state))))))
913
914 (provide 'lisp-mode)
915
916 ;;; lisp-mode.el ends here