1 ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands.
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
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)
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.
27 ;; The base major mode for editing Lisp code (used also for Emacs Lisp).
28 ;; This mode is documented in the Emacs manual
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
)
38 (setq emacs-lisp-mode-syntax-table
(make-syntax-table))
40 (modify-syntax-entry i
"_ " emacs-lisp-mode-syntax-table
)
44 (modify-syntax-entry i
"_ " emacs-lisp-mode-syntax-table
)
48 (modify-syntax-entry i
"_ " emacs-lisp-mode-syntax-table
)
52 (modify-syntax-entry i
"_ " emacs-lisp-mode-syntax-table
)
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
85 "^\\s-*(def\\(un\\|subst\\|macro\\|advice\\)\\s-+\\([-A-Za-z0-9+*|:]+\\)" 2)
87 "^\\s-*(def\\(var\\|const\\)\\s-+\\([-A-Za-z0-9+*|:]+\\)" 2)
89 "^\\s-*(def\\(type\\|struct\\|class\\|ine-condition\\)\\s-+\\([-A-Za-z0-9+*|:]+\\)"
92 "Imenu generic expression for Lisp mode. See `imenu-generic-expression'.")
94 (defun lisp-mode-variables (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."
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."
186 (error "The buffer must be saved in a file first"))
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))))
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.
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."
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.")
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
))
226 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
228 Delete converts tabs to spaces as it moves back.
229 Blank lines separate paragraphs. Semicolons start comments.
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."
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]."
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.
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."
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."
287 (let ((standard-output (current-buffer)))
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."
296 (let ((standard-output (if eval-last-sexp-arg-internal
(current-buffer) t
)))
297 (prin1 (eval (let ((stab (syntax-table))
302 (set-syntax-table emacs-lisp-mode-syntax-table
)
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
311 (eq (car expr
) 'interactive
)
313 (list 'call-interactively
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."
327 (let ((standard-output (if eval-defun-arg-internal
(current-buffer) t
))
328 (form (save-excursion
331 (read (current-buffer)))))
332 (if (and (eq (car form
) 'defvar
)
333 (cdr-safe (cdr-safe form
)))
334 (setq form
(cons 'defconst
(cdr form
))))
335 (prin1 (eval form
))))
337 (defun lisp-comment-indent ()
338 (if (looking-at "\\s<\\s<\\s<")
340 (if (looking-at "\\s<\\s<")
341 (let ((tem (or (calculate-lisp-indent) (current-column))))
342 (if (listp tem
) (car tem
) tem
))
343 (skip-chars-backward " \t")
344 (max (if (bolp) 0 (1+ (current-column)))
347 (defvar lisp-indent-offset nil
"")
348 (defvar lisp-indent-function
'lisp-indent-function
"")
350 (defun lisp-indent-line (&optional whole-exp
)
351 "Indent current line as Lisp code.
352 With argument, indent any additional lines of the same expression
353 rigidly along with this one."
355 (let ((indent (calculate-lisp-indent)) shift-amt beg end
356 (pos (- (point-max) (point))))
359 (skip-chars-forward " \t")
360 (if (or (null indent
) (looking-at "\\s<\\s<\\s<"))
361 ;; Don't alter indentation of a ;;; comment line
362 ;; or a line that starts in a string.
363 (goto-char (- (point-max) pos
))
364 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<")))
365 ;; Single-semicolon comment lines should be indented
366 ;; as comment lines, not as code.
367 (progn (indent-for-comment) (forward-char -
1))
368 (if (listp indent
) (setq indent
(car indent
)))
369 (setq shift-amt
(- indent
(current-column)))
370 (if (zerop shift-amt
)
372 (delete-region beg
(point))
374 ;; If initial point was within line's indentation,
375 ;; position after the indentation. Else stay at same point in text.
376 (if (> (- (point-max) pos
) (point))
377 (goto-char (- (point-max) pos
)))
378 ;; If desired, shift remaining lines of expression the same amount.
379 (and whole-exp
(not (zerop shift-amt
))
388 (indent-code-rigidly beg end shift-amt
)))))
390 (defvar calculate-lisp-indent-last-sexp
)
392 (defun calculate-lisp-indent (&optional parse-start
)
393 "Return appropriate indentation for current line as Lisp code.
394 In usual case returns an integer: the column to indent to.
395 If the value is nil, that means don't change the indentation
396 because the line starts inside a string.
398 The value can also be a list of the form (COLUMN CONTAINING-SEXP-START).
399 This means that following lines at the same level of indentation
400 should not necessarily be indented the same as this line.
401 Then COLUMN is the column to indent to, and CONTAINING-SEXP-START
402 is the buffer position of the start of the containing expression."
405 (let ((indent-point (point))
407 ;; setting this to a number inhibits calling hook
410 calculate-lisp-indent-last-sexp containing-sexp
)
412 (goto-char parse-start
)
413 (beginning-of-defun))
414 ;; Find outermost containing sexp
415 (while (< (point) indent-point
)
416 (setq state
(parse-partial-sexp (point) indent-point
0)))
417 ;; Find innermost containing sexp
420 (> (setq paren-depth
(elt state
0)) 0))
422 (setq calculate-lisp-indent-last-sexp
(elt state
2))
423 (setq containing-sexp
(elt state
1))
424 ;; Position following last unclosed open.
425 (goto-char (1+ containing-sexp
))
426 ;; Is there a complete sexp since then?
427 (if (and calculate-lisp-indent-last-sexp
428 (> calculate-lisp-indent-last-sexp
(point)))
429 ;; Yes, but is there a containing sexp after that?
430 (let ((peek (parse-partial-sexp calculate-lisp-indent-last-sexp
432 (if (setq retry
(car (cdr peek
))) (setq state peek
)))))
435 ;; Innermost containing sexp found
436 (goto-char (1+ containing-sexp
))
437 (if (not calculate-lisp-indent-last-sexp
)
438 ;; indent-point immediately follows open paren.
440 (setq desired-indent
(current-column))
441 ;; Find the start of first element of containing sexp.
442 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp
0 t
)
443 (cond ((looking-at "\\s(")
444 ;; First element of containing sexp is a list.
445 ;; Indent under that list.
447 ((> (save-excursion (forward-line 1) (point))
448 calculate-lisp-indent-last-sexp
)
449 ;; This is the first line to start within the containing sexp.
450 ;; It's almost certainly a function call.
451 (if (= (point) calculate-lisp-indent-last-sexp
)
452 ;; Containing sexp has nothing before this line
453 ;; except the first element. Indent under that element.
455 ;; Skip the first element, find start of second (the first
456 ;; argument of the function call) and indent under.
457 (progn (forward-sexp 1)
458 (parse-partial-sexp (point)
459 calculate-lisp-indent-last-sexp
461 (backward-prefix-chars))
463 ;; Indent beneath first sexp on same line as
464 ;; calculate-lisp-indent-last-sexp. Again, it's
465 ;; almost certainly a function call.
466 (goto-char calculate-lisp-indent-last-sexp
)
468 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp
470 (backward-prefix-chars)))))
471 ;; Point is at the point to indent under unless we are inside a string.
472 ;; Call indentation hook except when overridden by lisp-indent-offset
473 ;; or if the desired indentation has already been computed.
474 (let ((normal-indent (current-column)))
476 ;; Inside a string, don't change indentation.
478 ((and (integerp lisp-indent-offset
) containing-sexp
)
479 ;; Indent by constant offset
480 (goto-char containing-sexp
)
481 (+ (current-column) lisp-indent-offset
))
483 ((and (boundp 'lisp-indent-function
)
486 (or (funcall lisp-indent-function indent-point state
)
491 (defun lisp-indent-function (indent-point state
)
492 (let ((normal-indent (current-column)))
493 (goto-char (1+ (elt state
1)))
494 (parse-partial-sexp (point) calculate-lisp-indent-last-sexp
0 t
)
495 (if (and (elt state
2)
496 (not (looking-at "\\sw\\|\\s_")))
497 ;; car of form doesn't seem to be a a symbol
499 (if (not (> (save-excursion (forward-line 1) (point))
500 calculate-lisp-indent-last-sexp
))
501 (progn (goto-char calculate-lisp-indent-last-sexp
)
503 (parse-partial-sexp (point)
504 calculate-lisp-indent-last-sexp
0 t
)))
505 ;; Indent under the list or under the first sexp on the same
506 ;; line as calculate-lisp-indent-last-sexp. Note that first
507 ;; thing on that line has to be complete sexp since we are
508 ;; inside the innermost containing sexp.
509 (backward-prefix-chars)
511 (let ((function (buffer-substring (point)
512 (progn (forward-sexp 1) (point))))
514 (setq method
(or (get (intern-soft function
) 'lisp-indent-function
)
515 (get (intern-soft function
) 'lisp-indent-hook
)))
516 (cond ((or (eq method
'defun
)
518 (> (length function
) 3)
519 (string-match "\\`def" function
)))
520 (lisp-indent-defform state indent-point
))
522 (lisp-indent-specform method state
523 indent-point normal-indent
))
525 (funcall method state indent-point
)))))))
527 (defvar lisp-body-indent
2
528 "Number of columns to indent the second line of a `(def...)' form.")
530 (defun lisp-indent-specform (count state indent-point normal-indent
)
531 (let ((containing-form-start (elt state
1))
533 body-indent containing-form-column
)
534 ;; Move to the start of containing form, calculate indentation
535 ;; to use for non-distinguished forms (> count), and move past the
536 ;; function symbol. lisp-indent-function guarantees that there is at
537 ;; least one word or symbol character following open paren of containing
539 (goto-char containing-form-start
)
540 (setq containing-form-column
(current-column))
541 (setq body-indent
(+ lisp-body-indent containing-form-column
))
544 ;; Now find the start of the last form.
545 (parse-partial-sexp (point) indent-point
1 t
)
546 (while (and (< (point) indent-point
)
549 (setq count
(1- count
))
551 (parse-partial-sexp (point) indent-point
1 t
))
553 ;; Point is sitting on first character of last (or count) sexp.
555 ;; A distinguished form. If it is the first or second form use double
556 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound
557 ;; to 2 (the default), this just happens to work the same with if as
558 ;; the older code, but it makes unwind-protect, condition-case,
559 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older,
560 ;; less hacked, behavior can be obtained by replacing below with
561 ;; (list normal-indent containing-form-start).
562 (if (<= (- i count
) 1)
563 (list (+ containing-form-column
(* 2 lisp-body-indent
))
564 containing-form-start
)
565 (list normal-indent containing-form-start
))
566 ;; A non-distinguished form. Use body-indent if there are no
567 ;; distinguished forms and this is the first undistinguished form,
568 ;; or if this is the first undistinguished form and the preceding
569 ;; distinguished form has indentation at least as great as body-indent.
570 (if (or (and (= i
0) (= count
0))
571 (and (= count
0) (<= body-indent normal-indent
)))
575 (defun lisp-indent-defform (state indent-point
)
576 (goto-char (car (cdr state
)))
578 (if (> (point) (car (cdr (cdr state
))))
580 (goto-char (car (cdr state
)))
581 (+ lisp-body-indent
(current-column)))))
584 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented
585 ;; like defun if the first form is placed on the next line, otherwise
586 ;; it is indented like any other form (i.e. forms line up under first).
588 (put 'lambda
'lisp-indent-function
'defun
)
589 (put 'autoload
'lisp-indent-function
'defun
)
590 (put 'progn
'lisp-indent-function
0)
591 (put 'prog1
'lisp-indent-function
1)
592 (put 'prog2
'lisp-indent-function
2)
593 (put 'save-excursion
'lisp-indent-function
0)
594 (put 'save-window-excursion
'lisp-indent-function
0)
595 (put 'save-selected-window
'lisp-indent-function
0)
596 (put 'save-restriction
'lisp-indent-function
0)
597 (put 'save-match-data
'lisp-indent-function
0)
598 (put 'save-current-buffer
'lisp-indent-function
0)
599 (put 'with-current-buffer
'lisp-indent-function
1)
600 (put 'combine-after-change-calls
'lisp-indent-function
0)
601 (put 'with-output-to-string
'lisp-indent-function
0)
602 (put 'with-temp-file
'lisp-indent-function
1)
603 (put 'with-temp-buffer
'lisp-indent-function
0)
604 (put 'let
'lisp-indent-function
1)
605 (put 'let
* 'lisp-indent-function
1)
606 (put 'while
'lisp-indent-function
1)
607 (put 'if
'lisp-indent-function
2)
608 (put 'catch
'lisp-indent-function
1)
609 (put 'condition-case
'lisp-indent-function
2)
610 (put 'unwind-protect
'lisp-indent-function
1)
611 (put 'with-output-to-temp-buffer
'lisp-indent-function
1)
612 (put 'eval-after-load
'lisp-indent-function
1)
614 (defun indent-sexp (&optional endpos
)
615 "Indent each line of the list starting just after point.
616 If optional arg ENDPOS is given, indent each line, stopping when
617 ENDPOS is encountered."
619 (let ((indent-stack (list nil
))
621 ;; If ENDPOS is non-nil, use nil as STARTING-POINT
622 ;; so that calculate-lisp-indent will find the beginning of
623 ;; the defun we are in.
624 ;; If ENDPOS is nil, it is safe not to scan before point
625 ;; since every line we indent is more deeply nested than point is.
626 (starting-point (if endpos nil
(point)))
628 last-depth bol outer-loop-done inner-loop-done state this-indent
)
630 ;; Get error now if we don't have a complete sexp after point.
631 (save-excursion (forward-sexp 1)))
633 (setq outer-loop-done nil
)
634 (while (if endpos
(< (point) endpos
)
635 (not outer-loop-done
))
636 (setq last-depth next-depth
638 ;; Parse this line so we can learn the state
639 ;; to indent the next line.
640 ;; This inner loop goes through only once
641 ;; unless a line ends inside a string.
642 (while (and (not inner-loop-done
)
643 (not (setq outer-loop-done
(eobp))))
644 (setq state
(parse-partial-sexp (point) (progn (end-of-line) (point))
646 (setq next-depth
(car state
))
647 ;; If the line contains a comment other than the sort
648 ;; that is indented like code,
649 ;; indent it now with indent-for-comment.
650 ;; Comments indented like code are right already.
651 ;; In any case clear the in-comment flag in the state
652 ;; because parse-partial-sexp never sees the newlines.
653 (if (car (nthcdr 4 state
))
654 (progn (indent-for-comment)
656 (setcar (nthcdr 4 state
) nil
)))
657 ;; If this line ends inside a string,
658 ;; go straight to next line, remaining within the inner loop,
659 ;; and turn off the \-flag.
660 (if (car (nthcdr 3 state
))
663 (setcar (nthcdr 5 state
) nil
))
664 (setq inner-loop-done t
)))
668 (setq indent-stack
(append indent-stack
669 (make-list (- next-depth
) nil
))
670 last-depth
(- last-depth next-depth
)
672 (or outer-loop-done endpos
673 (setq outer-loop-done
(<= next-depth
0)))
676 (while (> last-depth next-depth
)
677 (setq indent-stack
(cdr indent-stack
)
678 last-depth
(1- last-depth
)))
679 (while (< last-depth next-depth
)
680 (setq indent-stack
(cons nil indent-stack
)
681 last-depth
(1+ last-depth
)))
682 ;; Now go to the next line and indent it according
683 ;; to what we learned from parsing the previous one.
686 (skip-chars-forward " \t")
687 ;; But not if the line is blank, or just a comment
688 ;; (except for double-semi comments; indent them as usual).
689 (if (or (eobp) (looking-at "\\s<\\|\n"))
691 (if (and (car indent-stack
)
692 (>= (car indent-stack
) 0))
693 (setq this-indent
(car indent-stack
))
694 (let ((val (calculate-lisp-indent
695 (if (car indent-stack
) (- (car indent-stack
))
698 (setq this-indent val
)
701 (setq this-indent val
))
702 (setcar indent-stack
(- (car (cdr val
))))
703 (setq this-indent
(car val
))))))
704 (if (and this-indent
(/= (current-column) this-indent
))
705 (progn (delete-region bol
(point))
706 (indent-to this-indent
)))))
708 (setq outer-loop-done
(= (point) last-point
))
709 (setq last-point
(point)))))))
711 ;; Indent every line whose first char is between START and END inclusive.
712 (defun lisp-indent-region (start end
)
714 (let ((endmark (copy-marker end
)))
716 (and (bolp) (not (eolp))
718 (indent-sexp endmark
)
719 (set-marker endmark nil
))))
721 ;;;; Lisp paragraph filling commands.
723 (defun lisp-fill-paragraph (&optional justify
)
724 "Like \\[fill-paragraph], but handle Emacs Lisp comments.
725 If any of the current line is a comment, fill the comment or the
726 paragraph of it that point is in, preserving the comment's indentation
727 and initial semicolons."
730 ;; Non-nil if the current line contains a comment.
733 ;; Non-nil if the current line contains code and a comment.
736 ;; If has-comment, the appropriate fill-prefix for the comment.
740 ;; Figure out what kind of comment we are looking at.
745 ;; A line with nothing but a comment on it?
746 ((looking-at "[ \t]*;[; \t]*")
748 comment-fill-prefix
(buffer-substring (match-beginning 0)
751 ;; A line with some code, followed by a comment? Remember that the
752 ;; semi which starts the comment shouldn't be part of a string or
756 (narrow-to-region (point-min)
757 (save-excursion (end-of-line) (point)))
758 (while (not (looking-at ";\\|$"))
759 (skip-chars-forward "^;\n\"\\\\?")
761 ((eq (char-after (point)) ?
\\) (forward-char 2))
762 ((memq (char-after (point)) '(?
\" ??
)) (forward-sexp 1))))
763 (looking-at ";+[\t ]*"))
765 (setq has-comment t has-code-and-comment t
)
766 (setq comment-fill-prefix
767 (concat (make-string (/ (current-column) 8) ?
\t)
768 (make-string (%
(current-column) 8) ?\
)
769 (buffer-substring (match-beginning 0) (match-end 0)))))))
771 (if (not has-comment
)
772 (fill-paragraph justify
)
774 ;; Narrow to include only the comment, and then fill the region.
779 ;; Find the first line we should include in the region to fill.
781 (while (and (zerop (forward-line -
1))
782 (looking-at "^[ \t]*;")))
783 ;; We may have gone too far. Go forward again.
784 (or (looking-at ".*;")
787 ;; Find the beginning of the first line past the region to fill.
789 (while (progn (forward-line 1)
790 (looking-at "^[ \t]*;")))
793 ;; Lines with only semicolons on them can be paragraph boundaries.
794 (let* ((paragraph-start (concat paragraph-start
"\\|[ \t;]*$"))
795 (paragraph-separate (concat paragraph-start
"\\|[ \t;]*$"))
796 (paragraph-ignore-fill-prefix nil
)
797 (fill-prefix comment-fill-prefix
)
798 (after-line (if has-code-and-comment
800 (forward-line 1) (point))))
803 (or (bolp) (newline 1))
805 ;; If this comment starts on a line with code,
806 ;; include that like in the filling.
807 (beg (progn (backward-paragraph)
808 (if (eq (point) after-line
)
811 (fill-region-as-paragraph beg end
815 (if (looking-at fill-prefix
)
817 (re-search-forward comment-start-skip
)
821 (defun indent-code-rigidly (start end arg
&optional nochange-regexp
)
822 "Indent all lines of code, starting in the region, sideways by ARG columns.
823 Does not affect lines starting inside comments or strings, assuming that
824 the start of the region is not inside them.
826 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP.
827 The last is a regexp which, if matched at the beginning of a line,
828 means don't indent that line."
833 (setq end
(point-marker))
836 (setq state
(parse-partial-sexp (point)
838 (forward-line 1) (point))
840 (while (< (point) end
)
841 (or (car (nthcdr 3 state
))
843 (looking-at nochange-regexp
))
844 ;; If line does not start in string, indent it
845 (let ((indent (current-indentation)))
846 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
848 (indent-to (max 0 (+ indent arg
)) 0))))
849 (setq state
(parse-partial-sexp (point)
851 (forward-line 1) (point))
856 ;;; lisp-mode.el ends here