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