Mercurial > emacs
annotate lisp/emacs-lisp/lisp.el @ 8710:80ea1fd539f3
[USE_X_TOOLKIT && HAVE_X11XTR6] (REL_ALLOC): Undefine it.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 06 Sep 1994 01:34:31 +0000 |
parents | f9e57f3ecc9d |
children | 06a5ceb0fb21 |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
215
diff
changeset
|
1 ;;; lisp.el --- Lisp editing commands for Emacs |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
215
diff
changeset
|
2 |
7300 | 3 ;; Copyright (C) 1985, 1986, 1994 Free Software Foundation, Inc. |
845 | 4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
6 ;; Keywords: lisp, languages |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
7 |
84 | 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:
659
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
84 | 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:
2247
diff
changeset
|
24 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
25 |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2823
diff
changeset
|
26 ;; Lisp editing commands to go with Lisp major mode. |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
27 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
28 ;;; Code: |
84 | 29 |
6369 | 30 ;; Note that this variable is used by non-lisp modes too. |
84 | 31 (defvar defun-prompt-regexp nil |
6369 | 32 "*Non-nil => regexp to ignore, before the character that starts a defun. |
33 This is only necessary if the opening paren or brace is not in column 0. | |
34 See `beginning-of-defun'.") | |
6973
7aa70fb3afa8
(defun-prompt-regexp): Make this variable buffer-local.
Karl Heuer <kwzh@gnu.org>
parents:
6420
diff
changeset
|
35 (make-variable-buffer-local 'defun-prompt-regexp) |
84 | 36 |
3758
e212a0863773
(parens-require-spaces): Var renamed and sense changed.
Richard M. Stallman <rms@gnu.org>
parents:
3733
diff
changeset
|
37 (defvar parens-require-spaces t |
e212a0863773
(parens-require-spaces): Var renamed and sense changed.
Richard M. Stallman <rms@gnu.org>
parents:
3733
diff
changeset
|
38 "Non-nil => `insert-parentheses' should insert whitespace as needed.") |
3733
c1c105ffdd0c
(parens-dont-require-spaces): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
39 |
84 | 40 (defun forward-sexp (&optional arg) |
41 "Move forward across one balanced expression (sexp). | |
215 | 42 With argument, do it that many times. Negative arg -N means |
43 move backward across N balanced expressions." | |
84 | 44 (interactive "p") |
45 (or arg (setq arg 1)) | |
46 (goto-char (or (scan-sexps (point) arg) (buffer-end arg))) | |
47 (if (< arg 0) (backward-prefix-chars))) | |
48 | |
49 (defun backward-sexp (&optional arg) | |
50 "Move backward across one balanced expression (sexp). | |
215 | 51 With argument, do it that many times. Negative arg -N means |
52 move forward across N balanced expressions." | |
84 | 53 (interactive "p") |
54 (or arg (setq arg 1)) | |
55 (forward-sexp (- arg))) | |
56 | |
57 (defun mark-sexp (arg) | |
58 "Set mark ARG sexps from point. | |
215 | 59 The place mark goes is the same place \\[forward-sexp] would |
60 move to with the same argument." | |
84 | 61 (interactive "p") |
62 (push-mark | |
63 (save-excursion | |
64 (forward-sexp arg) | |
2823
8ab0e280fbf0
(mark-sexp, mark-defun): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
65 (point)) |
8ab0e280fbf0
(mark-sexp, mark-defun): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
66 nil t)) |
84 | 67 |
68 (defun forward-list (&optional arg) | |
69 "Move forward across one balanced group of parentheses. | |
70 With argument, do it that many times. | |
71 Negative arg -N means move backward across N groups of parentheses." | |
72 (interactive "p") | |
73 (or arg (setq arg 1)) | |
74 (goto-char (or (scan-lists (point) arg 0) (buffer-end arg)))) | |
75 | |
76 (defun backward-list (&optional arg) | |
77 "Move backward across one balanced group of parentheses. | |
78 With argument, do it that many times. | |
79 Negative arg -N means move forward across N groups of parentheses." | |
80 (interactive "p") | |
81 (or arg (setq arg 1)) | |
82 (forward-list (- arg))) | |
83 | |
84 (defun down-list (arg) | |
85 "Move forward down one level of parentheses. | |
86 With argument, do this that many times. | |
87 A negative argument means move backward but still go down a level. | |
88 In Lisp programs, an argument is required." | |
89 (interactive "p") | |
90 (let ((inc (if (> arg 0) 1 -1))) | |
91 (while (/= arg 0) | |
92 (goto-char (or (scan-lists (point) inc -1) (buffer-end arg))) | |
93 (setq arg (- arg inc))))) | |
94 | |
95 (defun backward-up-list (arg) | |
96 "Move backward out of one level of parentheses. | |
97 With argument, do this that many times. | |
98 A negative argument means move forward but still to a less deep spot. | |
99 In Lisp programs, an argument is required." | |
100 (interactive "p") | |
101 (up-list (- arg))) | |
102 | |
103 (defun up-list (arg) | |
104 "Move forward out of one level of parentheses. | |
105 With argument, do this that many times. | |
106 A negative argument means move backward but still to a less deep spot. | |
107 In Lisp programs, an argument is required." | |
108 (interactive "p") | |
109 (let ((inc (if (> arg 0) 1 -1))) | |
110 (while (/= arg 0) | |
111 (goto-char (or (scan-lists (point) inc 1) (buffer-end arg))) | |
112 (setq arg (- arg inc))))) | |
113 | |
114 (defun kill-sexp (arg) | |
115 "Kill the sexp (balanced expression) following the cursor. | |
116 With argument, kill that many sexps after the cursor. | |
117 Negative arg -N means kill N sexps before the cursor." | |
118 (interactive "p") | |
119 (let ((opoint (point))) | |
120 (forward-sexp arg) | |
121 (kill-region opoint (point)))) | |
122 | |
123 (defun backward-kill-sexp (arg) | |
124 "Kill the sexp (balanced expression) preceding the cursor. | |
125 With argument, kill that many sexps before the cursor. | |
126 Negative arg -N means kill N sexps after the cursor." | |
127 (interactive "p") | |
128 (kill-sexp (- arg))) | |
129 | |
130 (defun beginning-of-defun (&optional arg) | |
131 "Move backward to the beginning of a defun. | |
132 With argument, do it that many times. Negative arg -N | |
133 means move forward to Nth following beginning of defun. | |
134 Returns t unless search stops due to beginning or end of buffer. | |
135 | |
136 Normally a defun starts when there is an char with open-parenthesis | |
137 syntax at the beginning of a line. If `defun-prompt-regexp' is | |
138 non-nil, then a string which matches that regexp may precede the | |
6397
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
139 open-parenthesis, and point ends up at the beginning of the line." |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
140 (interactive "p") |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
141 (and (beginning-of-defun-raw arg) |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
142 (progn (beginning-of-line) t))) |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
143 |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
144 (defun beginning-of-defun-raw (&optional arg) |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
145 "Move point to the character that starts a defun. |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
146 This is identical to beginning-of-defun, except that point does not move |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
147 to the beginning of the line when `defun-prompt-regexp' is non-nil." |
84 | 148 (interactive "p") |
6420
09fadfc6384e
(beginning-of-defun-raw): Don't err when called at end of buffer.
Karl Heuer <kwzh@gnu.org>
parents:
6397
diff
changeset
|
149 (and arg (< arg 0) (not (eobp)) (forward-char 1)) |
84 | 150 (and (re-search-backward (if defun-prompt-regexp |
151 (concat "^\\s(\\|" | |
152 "\\(" defun-prompt-regexp "\\)\\s(") | |
153 "^\\s(") | |
154 nil 'move (or arg 1)) | |
6397
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
155 (progn (goto-char (1- (match-end 0)))) t)) |
84 | 156 |
157 (defun buffer-end (arg) | |
158 (if (> arg 0) (point-max) (point-min))) | |
159 | |
160 (defun end-of-defun (&optional arg) | |
161 "Move forward to next end of defun. With argument, do it that many times. | |
162 Negative argument -N means move back to Nth preceding end of defun. | |
163 | |
164 An end of a defun occurs right after the close-parenthesis that matches | |
165 the open-parenthesis that starts a defun; see `beginning-of-defun'." | |
166 (interactive "p") | |
167 (if (or (null arg) (= arg 0)) (setq arg 1)) | |
168 (let ((first t)) | |
169 (while (and (> arg 0) (< (point) (point-max))) | |
170 (let ((pos (point)) npos) | |
171 (while (progn | |
172 (if (and first | |
173 (progn | |
6397
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
174 (end-of-line 1) |
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
175 (beginning-of-defun-raw 1))) |
84 | 176 nil |
177 (or (bobp) (forward-char -1)) | |
6397
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
178 (beginning-of-defun-raw -1)) |
84 | 179 (setq first nil) |
180 (forward-list 1) | |
181 (skip-chars-forward " \t") | |
182 (if (looking-at "\\s<\\|\n") | |
183 (forward-line 1)) | |
184 (<= (point) pos)))) | |
185 (setq arg (1- arg))) | |
186 (while (< arg 0) | |
187 (let ((pos (point))) | |
6397
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
188 (beginning-of-defun-raw 1) |
84 | 189 (forward-sexp 1) |
190 (forward-line 1) | |
191 (if (>= (point) pos) | |
6397
70bf65b6aae9
(beginning-of-defun-raw): New function.
Karl Heuer <kwzh@gnu.org>
parents:
6396
diff
changeset
|
192 (if (beginning-of-defun-raw 2) |
84 | 193 (progn |
194 (forward-list 1) | |
195 (skip-chars-forward " \t") | |
6396
1740ec160ff8
(end-of-defun): Fix check for trailing comment.
Karl Heuer <kwzh@gnu.org>
parents:
6369
diff
changeset
|
196 (if (looking-at "\\s<\\|\n") |
84 | 197 (forward-line 1))) |
198 (goto-char (point-min))))) | |
199 (setq arg (1+ arg))))) | |
200 | |
201 (defun mark-defun () | |
202 "Put mark at end of this defun, point at beginning. | |
203 The defun marked is the one that contains point or follows point." | |
204 (interactive) | |
205 (push-mark (point)) | |
206 (end-of-defun) | |
2823
8ab0e280fbf0
(mark-sexp, mark-defun): Activate the mark.
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
207 (push-mark (point) nil t) |
84 | 208 (beginning-of-defun) |
209 (re-search-backward "^\n" (- (point) 1) t)) | |
210 | |
211 (defun insert-parentheses (arg) | |
212 "Put parentheses around next ARG sexps. Leave point after open-paren. | |
3733
c1c105ffdd0c
(parens-dont-require-spaces): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
213 No argument is equivalent to zero: just insert `()' and leave point between. |
5838 | 214 If `parens-require-spaces' is non-nil, this command also inserts a space |
215 before and after, depending on the surrounding characters." | |
84 | 216 (interactive "P") |
133
2f5b3f50773d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
119
diff
changeset
|
217 (if arg (setq arg (prefix-numeric-value arg)) |
2f5b3f50773d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
119
diff
changeset
|
218 (setq arg 0)) |
2f5b3f50773d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
119
diff
changeset
|
219 (or (eq arg 0) (skip-chars-forward " \t")) |
3758
e212a0863773
(parens-require-spaces): Var renamed and sense changed.
Richard M. Stallman <rms@gnu.org>
parents:
3733
diff
changeset
|
220 (and parens-require-spaces |
3733
c1c105ffdd0c
(parens-dont-require-spaces): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
221 (memq (char-syntax (preceding-char)) '(?w ?_ ?\) )) |
84 | 222 (insert " ")) |
223 (insert ?\() | |
224 (save-excursion | |
133
2f5b3f50773d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
119
diff
changeset
|
225 (or (eq arg 0) (forward-sexp arg)) |
84 | 226 (insert ?\)) |
3758
e212a0863773
(parens-require-spaces): Var renamed and sense changed.
Richard M. Stallman <rms@gnu.org>
parents:
3733
diff
changeset
|
227 (and parens-require-spaces |
3733
c1c105ffdd0c
(parens-dont-require-spaces): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
228 (memq (char-syntax (following-char)) '(?w ?_ ?\( )) |
133
2f5b3f50773d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
119
diff
changeset
|
229 (insert " ")))) |
84 | 230 |
231 (defun move-past-close-and-reindent () | |
232 "Move past next `)', delete indentation before it, then indent after it." | |
233 (interactive) | |
234 (up-list 1) | |
235 (forward-char -1) | |
236 (while (save-excursion ; this is my contribution | |
237 (let ((before-paren (point))) | |
238 (back-to-indentation) | |
239 (= (point) before-paren))) | |
240 (delete-indentation)) | |
241 (forward-char 1) | |
242 (newline-and-indent)) | |
243 | |
244 (defun lisp-complete-symbol () | |
6004
4fa3d631dae8
(lisp-complete-symbol): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5981
diff
changeset
|
245 "Perform completion on Lisp symbol preceding point. |
4fa3d631dae8
(lisp-complete-symbol): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5981
diff
changeset
|
246 Compare that symbol against the known Lisp symbols. |
4fa3d631dae8
(lisp-complete-symbol): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5981
diff
changeset
|
247 |
4fa3d631dae8
(lisp-complete-symbol): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5981
diff
changeset
|
248 The context determines which symbols are considered. |
4fa3d631dae8
(lisp-complete-symbol): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5981
diff
changeset
|
249 If the symbol starts just after an open-parenthesis, only symbols |
215 | 250 with function definitions are considered. Otherwise, all symbols with |
251 function definitions, values or properties are considered." | |
84 | 252 (interactive) |
253 (let* ((end (point)) | |
254 (buffer-syntax (syntax-table)) | |
119 | 255 (beg (unwind-protect |
256 (save-excursion | |
257 (set-syntax-table emacs-lisp-mode-syntax-table) | |
258 (backward-sexp 1) | |
259 (while (= (char-syntax (following-char)) ?\') | |
260 (forward-char 1)) | |
261 (point)) | |
84 | 262 (set-syntax-table buffer-syntax))) |
263 (pattern (buffer-substring beg end)) | |
264 (predicate | |
265 (if (eq (char-after (1- beg)) ?\() | |
266 'fboundp | |
267 (function (lambda (sym) | |
268 (or (boundp sym) (fboundp sym) | |
269 (symbol-plist sym)))))) | |
270 (completion (try-completion pattern obarray predicate))) | |
271 (cond ((eq completion t)) | |
272 ((null completion) | |
273 (message "Can't find completion for \"%s\"" pattern) | |
274 (ding)) | |
275 ((not (string= pattern completion)) | |
276 (delete-region beg end) | |
277 (insert completion)) | |
278 (t | |
279 (message "Making completion list...") | |
8205
f9e57f3ecc9d
(lisp-complete-symbol): Bind completion-fixup-function.
Richard M. Stallman <rms@gnu.org>
parents:
7845
diff
changeset
|
280 (let ((list (all-completions pattern obarray predicate)) |
f9e57f3ecc9d
(lisp-complete-symbol): Bind completion-fixup-function.
Richard M. Stallman <rms@gnu.org>
parents:
7845
diff
changeset
|
281 (completion-fixup-function |
f9e57f3ecc9d
(lisp-complete-symbol): Bind completion-fixup-function.
Richard M. Stallman <rms@gnu.org>
parents:
7845
diff
changeset
|
282 (function (lambda () (if (save-excursion |
f9e57f3ecc9d
(lisp-complete-symbol): Bind completion-fixup-function.
Richard M. Stallman <rms@gnu.org>
parents:
7845
diff
changeset
|
283 (goto-char (max (point-min) (- (point) 4))) |
f9e57f3ecc9d
(lisp-complete-symbol): Bind completion-fixup-function.
Richard M. Stallman <rms@gnu.org>
parents:
7845
diff
changeset
|
284 (looking-at " <f>")) |
f9e57f3ecc9d
(lisp-complete-symbol): Bind completion-fixup-function.
Richard M. Stallman <rms@gnu.org>
parents:
7845
diff
changeset
|
285 (forward-char -4)))))) |
84 | 286 (or (eq predicate 'fboundp) |
287 (let (new) | |
288 (while list | |
289 (setq new (cons (if (fboundp (intern (car list))) | |
290 (list (car list) " <f>") | |
291 (car list)) | |
292 new)) | |
293 (setq list (cdr list))) | |
294 (setq list (nreverse new)))) | |
7845
6f6b61216b0b
(lisp-complete-symbol): Likewise.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
295 (with-output-to-temp-buffer "*Completions*" |
84 | 296 (display-completion-list list))) |
297 (message "Making completion list...%s" "done"))))) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
215
diff
changeset
|
298 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
215
diff
changeset
|
299 ;;; lisp.el ends here |