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