]> code.delx.au - gnu-emacs/blob - lisp/emacs-lisp/lisp-mode.el
(event-modifiers): Function deleted.
[gnu-emacs] / lisp / emacs-lisp / lisp-mode.el
1 ;;; lisp-mode.el --- Lisp mode, and its idiosyncratic commands.
2
3 ;; Copyright (C) 1985 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
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 ;;; Code:
25
26 ;;; Commentary:
27
28 ;; The base major mode for editing Lisp code (used also for Emacs Lisp).
29 ;; This mode is documented in the Emacs manual
30
31 ;;; Code:
32
33 (defvar lisp-mode-syntax-table nil "")
34 (defvar emacs-lisp-mode-syntax-table nil "")
35 (defvar lisp-mode-abbrev-table nil "")
36
37 (if (not emacs-lisp-mode-syntax-table)
38 (let ((i 0))
39 (setq emacs-lisp-mode-syntax-table (make-syntax-table))
40 (while (< i ?0)
41 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
42 (setq i (1+ i)))
43 (setq i (1+ ?9))
44 (while (< i ?A)
45 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
46 (setq i (1+ i)))
47 (setq i (1+ ?Z))
48 (while (< i ?a)
49 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
50 (setq i (1+ i)))
51 (setq i (1+ ?z))
52 (while (< i 128)
53 (modify-syntax-entry i "_ " emacs-lisp-mode-syntax-table)
54 (setq i (1+ i)))
55 (modify-syntax-entry ? " " emacs-lisp-mode-syntax-table)
56 (modify-syntax-entry ?\t " " emacs-lisp-mode-syntax-table)
57 (modify-syntax-entry ?\n "> " emacs-lisp-mode-syntax-table)
58 (modify-syntax-entry ?\f "> " 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)))
72
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)))
79
80 (define-abbrev-table 'lisp-mode-abbrev-table ())
81
82 (defun lisp-mode-variables (lisp-syntax)
83 (cond (lisp-syntax
84 (set-syntax-table lisp-mode-syntax-table)))
85 (setq local-abbrev-table lisp-mode-abbrev-table)
86 (make-local-variable 'paragraph-start)
87 (setq paragraph-start (concat "^$\\|" page-delimiter))
88 (make-local-variable 'paragraph-separate)
89 (setq paragraph-separate paragraph-start)
90 (make-local-variable 'paragraph-ignore-fill-prefix)
91 (setq paragraph-ignore-fill-prefix t)
92 (make-local-variable 'indent-line-function)
93 (setq indent-line-function 'lisp-indent-line)
94 (make-local-variable 'indent-region-function)
95 (setq indent-region-function 'lisp-indent-region)
96 (make-local-variable 'parse-sexp-ignore-comments)
97 (setq parse-sexp-ignore-comments t)
98 (make-local-variable 'comment-start)
99 (setq comment-start ";")
100 (make-local-variable 'comment-start-skip)
101 (setq comment-start-skip ";+ *")
102 (make-local-variable 'comment-column)
103 (setq comment-column 40)
104 (make-local-variable 'comment-indent-function)
105 (setq comment-indent-function 'lisp-comment-indent))
106 \f
107 (defvar shared-lisp-mode-map ()
108 "Keymap for commands shared by all sorts of Lisp modes.")
109
110 (if shared-lisp-mode-map
111 ()
112 (setq shared-lisp-mode-map (make-sparse-keymap))
113 (define-key shared-lisp-mode-map "\e\C-q" 'indent-sexp)
114 (define-key shared-lisp-mode-map "\M-q" 'lisp-fill-paragraph)
115 (define-key shared-lisp-mode-map "\177" 'backward-delete-char-untabify)
116 (define-key shared-lisp-mode-map "\t" 'lisp-indent-line))
117
118 (defvar emacs-lisp-mode-map ()
119 "Keymap for Emacs Lisp mode.
120 All commands in shared-lisp-mode-map are inherited by this map.")
121
122 (if emacs-lisp-mode-map
123 ()
124 (setq emacs-lisp-mode-map
125 (nconc (make-sparse-keymap) shared-lisp-mode-map))
126 (define-key emacs-lisp-mode-map "\e\t" 'lisp-complete-symbol)
127 (define-key emacs-lisp-mode-map "\e\C-x" 'eval-defun))
128
129 (defun emacs-lisp-mode ()
130 "Major mode for editing Lisp code to run in Emacs.
131 Commands:
132 Delete converts tabs to spaces as it moves back.
133 Blank lines separate paragraphs. Semicolons start comments.
134 \\{emacs-lisp-mode-map}
135 Entry to this mode calls the value of `emacs-lisp-mode-hook'
136 if that value is non-nil."
137 (interactive)
138 (kill-all-local-variables)
139 (use-local-map emacs-lisp-mode-map)
140 (set-syntax-table emacs-lisp-mode-syntax-table)
141 (setq major-mode 'emacs-lisp-mode)
142 (setq mode-name "Emacs-Lisp")
143 (lisp-mode-variables nil)
144 (run-hooks 'emacs-lisp-mode-hook))
145
146 (defvar lisp-mode-map ()
147 "Keymap for ordinary Lisp mode.
148 All commands in `shared-lisp-mode-map' are inherited by this map.")
149
150 (if lisp-mode-map
151 ()
152 (setq lisp-mode-map
153 (nconc (make-sparse-keymap) shared-lisp-mode-map))
154 (define-key lisp-mode-map "\e\C-x" 'lisp-send-defun)
155 (define-key lisp-mode-map "\C-c\C-l" 'run-lisp))
156
157 (defun lisp-mode ()
158 "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
159 Commands:
160 Delete converts tabs to spaces as it moves back.
161 Blank lines separate paragraphs. Semicolons start comments.
162 \\{lisp-mode-map}
163 Note that `run-lisp' may be used either to start an inferior Lisp job
164 or to switch back to an existing one.
165
166 Entry to this mode calls the value of `lisp-mode-hook'
167 if that value is non-nil."
168 (interactive)
169 (kill-all-local-variables)
170 (use-local-map lisp-mode-map)
171 (setq major-mode 'lisp-mode)
172 (setq mode-name "Lisp")
173 (lisp-mode-variables t)
174 (set-syntax-table lisp-mode-syntax-table)
175 (run-hooks 'lisp-mode-hook))
176
177 ;; This will do unless shell.el is loaded.
178 (defun lisp-send-defun nil
179 "Send the current defun to the Lisp process made by \\[run-lisp]."
180 (interactive)
181 (error "Process lisp does not exist"))
182
183 (defvar lisp-interaction-mode-map ()
184 "Keymap for Lisp Interaction moe.
185 All commands in `shared-lisp-mode-map' are inherited by this map.")
186
187 (if lisp-interaction-mode-map
188 ()
189 (setq lisp-interaction-mode-map
190 (nconc (make-sparse-keymap) shared-lisp-mode-map))
191 (define-key lisp-interaction-mode-map "\e\C-x" 'eval-defun)
192 (define-key lisp-interaction-mode-map "\e\t" 'lisp-complete-symbol)
193 (define-key lisp-interaction-mode-map "\n" 'eval-print-last-sexp))
194
195 (defun lisp-interaction-mode ()
196 "Major mode for typing and evaluating Lisp forms.
197 Like Lisp mode except that \\[eval-print-last-sexp] evals the Lisp expression
198 before point, and prints its value into the buffer, advancing point.
199
200 Commands:
201 Delete converts tabs to spaces as it moves back.
202 Paragraphs are separated only by blank lines.
203 Semicolons start comments.
204 \\{lisp-interaction-mode-map}
205 Entry to this mode calls the value of `lisp-interaction-mode-hook'
206 if that value is non-nil."
207 (interactive)
208 (kill-all-local-variables)
209 (use-local-map lisp-interaction-mode-map)
210 (setq major-mode 'lisp-interaction-mode)
211 (setq mode-name "Lisp Interaction")
212 (set-syntax-table emacs-lisp-mode-syntax-table)
213 (lisp-mode-variables nil)
214 (run-hooks 'lisp-interaction-mode-hook))
215
216 (defun eval-print-last-sexp ()
217 "Evaluate sexp before point; print value into current buffer."
218 (interactive)
219 (let ((standard-output (current-buffer)))
220 (terpri)
221 (eval-last-sexp t)
222 (terpri)))
223 \f
224 (defun eval-last-sexp (eval-last-sexp-arg-internal)
225 "Evaluate sexp before point; print value in minibuffer.
226 With argument, print output into current buffer."
227 (interactive "P")
228 (let ((standard-output (if eval-last-sexp-arg-internal (current-buffer) t))
229 (opoint (point)))
230 (prin1 (let ((stab (syntax-table)))
231 (eval (unwind-protect
232 (save-excursion
233 (set-syntax-table emacs-lisp-mode-syntax-table)
234 (forward-sexp -1)
235 (save-restriction
236 (narrow-to-region (point-min) opoint)
237 (read (current-buffer))))
238 (set-syntax-table stab)))))))
239
240 (defun eval-defun (eval-defun-arg-internal)
241 "Evaluate defun that point is in or before.
242 Print value in minibuffer.
243 With argument, insert value in current buffer after the defun."
244 (interactive "P")
245 (let ((standard-output (if eval-defun-arg-internal (current-buffer) t)))
246 (prin1 (eval (save-excursion
247 (end-of-defun)
248 (beginning-of-defun)
249 (read (current-buffer)))))))
250 \f
251 (defun lisp-comment-indent ()
252 (if (looking-at "\\s<\\s<\\s<")
253 (current-column)
254 (if (looking-at "\\s<\\s<")
255 (let ((tem (calculate-lisp-indent)))
256 (if (listp tem) (car tem) tem))
257 (skip-chars-backward " \t")
258 (max (if (bolp) 0 (1+ (current-column)))
259 comment-column))))
260
261 (defconst lisp-indent-offset nil "")
262 (defconst lisp-indent-function 'lisp-indent-function "")
263
264 (defun lisp-indent-line (&optional whole-exp)
265 "Indent current line as Lisp code.
266 With argument, indent any additional lines of the same expression
267 rigidly along with this one."
268 (interactive "P")
269 (let ((indent (calculate-lisp-indent)) shift-amt beg end
270 (pos (- (point-max) (point))))
271 (beginning-of-line)
272 (setq beg (point))
273 (skip-chars-forward " \t")
274 (if (looking-at "\\s<\\s<\\s<")
275 ;; Don't alter indentation of a ;;; comment line.
276 (goto-char (- (point-max) pos))
277 (if (and (looking-at "\\s<") (not (looking-at "\\s<\\s<")))
278 ;; Single-semicolon comment lines should be indented
279 ;; as comment lines, not as code.
280 (progn (indent-for-comment) (forward-char -1))
281 (if (listp indent) (setq indent (car indent)))
282 (setq shift-amt (- indent (current-column)))
283 (if (zerop shift-amt)
284 nil
285 (delete-region beg (point))
286 (indent-to indent)))
287 ;; If initial point was within line's indentation,
288 ;; position after the indentation. Else stay at same point in text.
289 (if (> (- (point-max) pos) (point))
290 (goto-char (- (point-max) pos)))
291 ;; If desired, shift remaining lines of expression the same amount.
292 (and whole-exp (not (zerop shift-amt))
293 (save-excursion
294 (goto-char beg)
295 (forward-sexp 1)
296 (setq end (point))
297 (goto-char beg)
298 (forward-line 1)
299 (setq beg (point))
300 (> end beg))
301 (indent-code-rigidly beg end shift-amt)))))
302
303 (defun calculate-lisp-indent (&optional parse-start)
304 "Return appropriate indentation for current line as Lisp code.
305 In usual case returns an integer: the column to indent to.
306 Can instead return a list, whose car is the column to indent to.
307 This means that following lines at the same level of indentation
308 should not necessarily be indented the same way.
309 The second element of the list is the buffer position
310 of the start of the containing expression."
311 (save-excursion
312 (beginning-of-line)
313 (let ((indent-point (point))
314 state paren-depth
315 ;; setting this to a number inhibits calling hook
316 (desired-indent nil)
317 (retry t)
318 last-sexp containing-sexp)
319 (if parse-start
320 (goto-char parse-start)
321 (beginning-of-defun))
322 ;; Find outermost containing sexp
323 (while (< (point) indent-point)
324 (setq state (parse-partial-sexp (point) indent-point 0)))
325 ;; Find innermost containing sexp
326 (while (and retry
327 state
328 (> (setq paren-depth (elt state 0)) 0))
329 (setq retry nil)
330 (setq last-sexp (elt state 2))
331 (setq containing-sexp (elt state 1))
332 ;; Position following last unclosed open.
333 (goto-char (1+ containing-sexp))
334 ;; Is there a complete sexp since then?
335 (if (and last-sexp (> last-sexp (point)))
336 ;; Yes, but is there a containing sexp after that?
337 (let ((peek (parse-partial-sexp last-sexp indent-point 0)))
338 (if (setq retry (car (cdr peek))) (setq state peek)))))
339 (if retry
340 nil
341 ;; Innermost containing sexp found
342 (goto-char (1+ containing-sexp))
343 (if (not last-sexp)
344 ;; indent-point immediately follows open paren.
345 ;; Don't call hook.
346 (setq desired-indent (current-column))
347 ;; Find the start of first element of containing sexp.
348 (parse-partial-sexp (point) last-sexp 0 t)
349 (cond ((looking-at "\\s(")
350 ;; First element of containing sexp is a list.
351 ;; Indent under that list.
352 )
353 ((> (save-excursion (forward-line 1) (point))
354 last-sexp)
355 ;; This is the first line to start within the containing sexp.
356 ;; It's almost certainly a function call.
357 (if (= (point) last-sexp)
358 ;; Containing sexp has nothing before this line
359 ;; except the first element. Indent under that element.
360 nil
361 ;; Skip the first element, find start of second (the first
362 ;; argument of the function call) and indent under.
363 (progn (forward-sexp 1)
364 (parse-partial-sexp (point) last-sexp 0 t)))
365 (backward-prefix-chars))
366 (t
367 ;; Indent beneath first sexp on same line as last-sexp.
368 ;; Again, it's almost certainly a function call.
369 (goto-char last-sexp)
370 (beginning-of-line)
371 (parse-partial-sexp (point) last-sexp 0 t)
372 (backward-prefix-chars)))))
373 ;; Point is at the point to indent under unless we are inside a string.
374 ;; Call indentation hook except when overriden by lisp-indent-offset
375 ;; or if the desired indentation has already been computed.
376 (let ((normal-indent (current-column)))
377 (cond ((elt state 3)
378 ;; Inside a string, don't change indentation.
379 (goto-char indent-point)
380 (skip-chars-forward " \t")
381 (current-column))
382 ((and (integerp lisp-indent-offset) containing-sexp)
383 ;; Indent by constant offset
384 (goto-char containing-sexp)
385 (+ (current-column) lisp-indent-offset))
386 (desired-indent)
387 ((and (boundp 'lisp-indent-function)
388 lisp-indent-function
389 (not retry))
390 (or (funcall lisp-indent-function indent-point state)
391 normal-indent))
392 (t
393 normal-indent))))))
394
395 (defun lisp-indent-function (indent-point state)
396 (let ((normal-indent (current-column)))
397 (goto-char (1+ (elt state 1)))
398 (parse-partial-sexp (point) last-sexp 0 t)
399 (if (and (elt state 2)
400 (not (looking-at "\\sw\\|\\s_")))
401 ;; car of form doesn't seem to be a a symbol
402 (progn
403 (if (not (> (save-excursion (forward-line 1) (point))
404 last-sexp))
405 (progn (goto-char last-sexp)
406 (beginning-of-line)
407 (parse-partial-sexp (point) last-sexp 0 t)))
408 ;; Indent under the list or under the first sexp on the
409 ;; same line as last-sexp. Note that first thing on that
410 ;; line has to be complete sexp since we are inside the
411 ;; innermost containing sexp.
412 (backward-prefix-chars)
413 (current-column))
414 (let ((function (buffer-substring (point)
415 (progn (forward-sexp 1) (point))))
416 method)
417 (setq method (get (intern-soft function) 'lisp-indent-function))
418 (cond ((or (eq method 'defun)
419 (and (null method)
420 (> (length function) 3)
421 (string-match "\\`def" function)))
422 (lisp-indent-defform state indent-point))
423 ((integerp method)
424 (lisp-indent-specform method state
425 indent-point normal-indent))
426 (method
427 (funcall method state indent-point)))))))
428
429 (defconst lisp-body-indent 2
430 "Number of columns to indent the second line of a `(def...)' form.")
431
432 (defun lisp-indent-specform (count state indent-point normal-indent)
433 (let ((containing-form-start (elt state 1))
434 (i count)
435 body-indent containing-form-column)
436 ;; Move to the start of containing form, calculate indentation
437 ;; to use for non-distinguished forms (> count), and move past the
438 ;; function symbol. lisp-indent-function guarantees that there is at
439 ;; least one word or symbol character following open paren of containing
440 ;; form.
441 (goto-char containing-form-start)
442 (setq containing-form-column (current-column))
443 (setq body-indent (+ lisp-body-indent containing-form-column))
444 (forward-char 1)
445 (forward-sexp 1)
446 ;; Now find the start of the last form.
447 (parse-partial-sexp (point) indent-point 1 t)
448 (while (and (< (point) indent-point)
449 (condition-case ()
450 (progn
451 (setq count (1- count))
452 (forward-sexp 1)
453 (parse-partial-sexp (point) indent-point 1 t))
454 (error nil))))
455 ;; Point is sitting on first character of last (or count) sexp.
456 (if (> count 0)
457 ;; A distinguished form. If it is the first or second form use double
458 ;; lisp-body-indent, else normal indent. With lisp-body-indent bound
459 ;; to 2 (the default), this just happens to work the same with if as
460 ;; the older code, but it makes unwind-protect, condition-case,
461 ;; with-output-to-temp-buffer, et. al. much more tasteful. The older,
462 ;; less hacked, behavior can be obtained by replacing below with
463 ;; (list normal-indent containing-form-start).
464 (if (<= (- i count) 1)
465 (list (+ containing-form-column (* 2 lisp-body-indent))
466 containing-form-start)
467 (list normal-indent containing-form-start))
468 ;; A non-distinguished form. Use body-indent if there are no
469 ;; distinguished forms and this is the first undistinguished form,
470 ;; or if this is the first undistinguished form and the preceding
471 ;; distinguished form has indentation at least as great as body-indent.
472 (if (or (and (= i 0) (= count 0))
473 (and (= count 0) (<= body-indent normal-indent)))
474 body-indent
475 normal-indent))))
476
477 (defun lisp-indent-defform (state indent-point)
478 (goto-char (car (cdr state)))
479 (forward-line 1)
480 (if (> (point) (car (cdr (cdr state))))
481 (progn
482 (goto-char (car (cdr state)))
483 (+ lisp-body-indent (current-column)))))
484
485 \f
486 ;; (put 'progn 'lisp-indent-function 0), say, causes progn to be indented
487 ;; like defun if the first form is placed on the next line, otherwise
488 ;; it is indented like any other form (i.e. forms line up under first).
489
490 (put 'lambda 'lisp-indent-function 'defun)
491 (put 'autoload 'lisp-indent-function 'defun)
492 (put 'progn 'lisp-indent-function 0)
493 (put 'prog1 'lisp-indent-function 1)
494 (put 'prog2 'lisp-indent-function 2)
495 (put 'save-excursion 'lisp-indent-function 0)
496 (put 'save-window-excursion 'lisp-indent-function 0)
497 (put 'save-restriction 'lisp-indent-function 0)
498 (put 'save-match-data 'lisp-indent-function 0)
499 (put 'let 'lisp-indent-function 1)
500 (put 'let* 'lisp-indent-function 1)
501 (put 'while 'lisp-indent-function 1)
502 (put 'if 'lisp-indent-function 2)
503 (put 'catch 'lisp-indent-function 1)
504 (put 'condition-case 'lisp-indent-function 2)
505 (put 'unwind-protect 'lisp-indent-function 1)
506 (put 'with-output-to-temp-buffer 'lisp-indent-function 1)
507
508 (defun indent-sexp (&optional endpos)
509 "Indent each line of the list starting just after point.
510 If optional arg ENDPOS is given, indent each line, stopping when
511 ENDPOS is encountered."
512 (interactive)
513 (let ((indent-stack (list nil))
514 (next-depth 0)
515 (starting-point (point))
516 (last-point (point))
517 last-depth bol outer-loop-done inner-loop-done state this-indent)
518 ;; Get error now if we don't have a complete sexp after point.
519 (save-excursion (forward-sexp 1))
520 (save-excursion
521 (setq outer-loop-done nil)
522 (while (if endpos (< (point) endpos)
523 (not outer-loop-done))
524 (setq last-depth next-depth
525 inner-loop-done nil)
526 ;; Parse this line so we can learn the state
527 ;; to indent the next line.
528 ;; This inner loop goes through only once
529 ;; unless a line ends inside a string.
530 (while (and (not inner-loop-done)
531 (not (setq outer-loop-done (eobp))))
532 (setq state (parse-partial-sexp (point) (progn (end-of-line) (point))
533 nil nil state))
534 (setq next-depth (car state))
535 ;; If the line contains a comment other than the sort
536 ;; that is indented like code,
537 ;; indent it now with indent-for-comment.
538 ;; Comments indented like code are right already.
539 ;; In any case clear the in-comment flag in the state
540 ;; because parse-partial-sexp never sees the newlines.
541 (if (car (nthcdr 4 state))
542 (progn (indent-for-comment)
543 (end-of-line)
544 (setcar (nthcdr 4 state) nil)))
545 ;; If this line ends inside a string,
546 ;; go straight to next line, remaining within the inner loop,
547 ;; and turn off the \-flag.
548 (if (car (nthcdr 3 state))
549 (progn
550 (forward-line 1)
551 (setcar (nthcdr 5 state) nil))
552 (setq inner-loop-done t)))
553 (and endpos
554 (<= next-depth 0)
555 (progn
556 (setq indent-stack (append indent-stack
557 (make-list (- next-depth) nil))
558 last-depth (- last-depth next-depth)
559 next-depth 0)))
560 (or outer-loop-done
561 (setq outer-loop-done (<= next-depth 0)))
562 (if outer-loop-done
563 nil
564 (while (> last-depth next-depth)
565 (setq indent-stack (cdr indent-stack)
566 last-depth (1- last-depth)))
567 (while (< last-depth next-depth)
568 (setq indent-stack (cons nil indent-stack)
569 last-depth (1+ last-depth)))
570 ;; Now go to the next line and indent it according
571 ;; to what we learned from parsing the previous one.
572 (forward-line 1)
573 (setq bol (point))
574 (skip-chars-forward " \t")
575 ;; But not if the line is blank, or just a comment
576 ;; (except for double-semi comments; indent them as usual).
577 (if (or (eobp) (looking-at "\\s<\\|\n"))
578 nil
579 (if (and (car indent-stack)
580 (>= (car indent-stack) 0))
581 (setq this-indent (car indent-stack))
582 (let ((val (calculate-lisp-indent
583 (if (car indent-stack) (- (car indent-stack))
584 starting-point))))
585 (if (integerp val)
586 (setcar indent-stack
587 (setq this-indent val))
588 (setcar indent-stack (- (car (cdr val))))
589 (setq this-indent (car val)))))
590 (if (/= (current-column) this-indent)
591 (progn (delete-region bol (point))
592 (indent-to this-indent)))))
593 (or outer-loop-done
594 (setq outer-loop-done (= (point) last-point))
595 (setq last-point (point)))))))
596
597 ;; Indent every line whose first char is between START and END inclusive.
598 (defun lisp-indent-region (start end)
599 (save-excursion
600 (goto-char start)
601 (and (bolp) (not (eolp))
602 (lisp-indent-line))
603 (let ((endmark (copy-marker end)))
604 (indent-sexp endmark)
605 (set-marker endmark nil))))
606 \f
607 ;;;; Lisp paragraph filling commands.
608
609 (defun lisp-fill-paragraph (&optional justify)
610 "Like \\[fill-paragraph], but handle Emacs Lisp comments.
611 If any of the current line is a comment, fill the comment or the
612 paragraph of it that point is in, preserving the comment's indentation
613 and initial semicolons."
614 (interactive "P")
615 (let (
616 ;; Non-nil if the current line contains a comment.
617 has-comment
618
619 ;; If has-comment, the appropriate fill-prefix for the comment.
620 comment-fill-prefix
621 )
622
623 ;; Figure out what kind of comment we are looking at.
624 (save-excursion
625 (beginning-of-line)
626 (cond
627
628 ;; A line with nothing but a comment on it?
629 ((looking-at "[ \t]*;[; \t]*")
630 (setq has-comment t
631 comment-fill-prefix (buffer-substring (match-beginning 0)
632 (match-end 0))))
633
634 ;; A line with some code, followed by a comment? Remember that the
635 ;; semi which starts the comment shouldn't be part of a string or
636 ;; character.
637 ((progn
638 (while (not (looking-at ";\\|$"))
639 (skip-chars-forward "^;\n\"\\\\?")
640 (cond
641 ((eq (char-after (point)) ?\\) (forward-char 2))
642 ((memq (char-after (point)) '(?\" ??)) (forward-sexp 1))))
643 (looking-at ";+[\t ]*"))
644 (setq has-comment t)
645 (setq comment-fill-prefix
646 (concat (make-string (current-column) ? )
647 (buffer-substring (match-beginning 0) (match-end 0)))))))
648
649 (if (not has-comment)
650 (fill-paragraph justify)
651
652 ;; Narrow to include only the comment, and then fill the region.
653 (save-restriction
654 (narrow-to-region
655 ;; Find the first line we should include in the region to fill.
656 (save-excursion
657 (while (and (zerop (forward-line -1))
658 (looking-at "^[ \t]*;")))
659 ;; We may have gone to far. Go forward again.
660 (or (looking-at "^[ \t]*;")
661 (forward-line 1))
662 (point))
663 ;; Find the beginning of the first line past the region to fill.
664 (save-excursion
665 (while (progn (forward-line 1)
666 (looking-at "^[ \t]*;")))
667 (point)))
668
669 ;; Lines with only semicolons on them can be paragraph boundaries.
670 (let ((paragraph-start (concat paragraph-start "\\|^[ \t;]*$"))
671 (paragraph-separate (concat paragraph-start "\\|^[ \t;]*$"))
672 (fill-prefix comment-fill-prefix))
673 (fill-paragraph justify))))))
674
675 \f
676 (defun indent-code-rigidly (start end arg &optional nochange-regexp)
677 "Indent all lines of code, starting in the region, sideways by ARG columns.
678 Does not affect lines starting inside comments or strings, assuming that
679 the start of the region is not inside them.
680
681 Called from a program, takes args START, END, COLUMNS and NOCHANGE-REGEXP.
682 The last is a regexp which, if matched at the beginning of a line,
683 means don't indent that line."
684 (interactive "r\np")
685 (let (state)
686 (save-excursion
687 (goto-char end)
688 (setq end (point-marker))
689 (goto-char start)
690 (or (bolp)
691 (setq state (parse-partial-sexp (point)
692 (progn
693 (forward-line 1) (point))
694 nil nil state)))
695 (while (< (point) end)
696 (or (car (nthcdr 3 state))
697 (and nochange-regexp
698 (looking-at nochange-regexp))
699 ;; If line does not start in string, indent it
700 (let ((indent (current-indentation)))
701 (delete-region (point) (progn (skip-chars-forward " \t") (point)))
702 (or (eolp)
703 (indent-to (max 0 (+ indent arg)) 0))))
704 (setq state (parse-partial-sexp (point)
705 (progn
706 (forward-line 1) (point))
707 nil nil state))))))
708
709 (provide 'lisp-mode)
710
711 ;;; lisp-mode.el ends here