mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-07 06:50:23 -08:00
(lisp-complete-symbol): Don't bind completion-fixup-function.
This commit is contained in:
parent
7d22ed15b7
commit
e323ab22c3
1 changed files with 1 additions and 6 deletions
|
|
@ -316,12 +316,7 @@ function definitions, values or properties are considered."
|
|||
(insert completion))
|
||||
(t
|
||||
(message "Making completion list...")
|
||||
(let ((list (all-completions pattern obarray predicate))
|
||||
(completion-fixup-function
|
||||
(function (lambda () (if (save-excursion
|
||||
(goto-char (max (point-min) (- (point) 4)))
|
||||
(looking-at " <f>"))
|
||||
(forward-char -4))))))
|
||||
(let ((list (all-completions pattern obarray predicate)))
|
||||
(setq list (sort list 'string<))
|
||||
(or (eq predicate 'fboundp)
|
||||
(let (new)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue