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