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