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