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