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