diff options
| author | Richard M. Stallman | 1998-10-13 23:56:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-10-13 23:56:32 +0000 |
| commit | e323ab22c38944d1c3d0b6e5e2eddf2bd29b580d (patch) | |
| tree | 132689e6849a1f48f02385381eac0fecd55ab6b7 | |
| parent | 7d22ed15b7bec3317eaaba55a6248a9e4b76fedc (diff) | |
| download | emacs-e323ab22c38944d1c3d0b6e5e2eddf2bd29b580d.tar.gz emacs-e323ab22c38944d1c3d0b6e5e2eddf2bd29b580d.zip | |
(lisp-complete-symbol): Don't bind completion-fixup-function.
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index d2effa5d88c..ceedda40fcb 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el | |||
| @@ -316,12 +316,7 @@ function definitions, values or properties are considered." | |||
| 316 | (insert completion)) | 316 | (insert completion)) |
| 317 | (t | 317 | (t |
| 318 | (message "Making completion list...") | 318 | (message "Making completion list...") |
| 319 | (let ((list (all-completions pattern obarray predicate)) | 319 | (let ((list (all-completions pattern obarray predicate))) |
| 320 | (completion-fixup-function | ||
| 321 | (function (lambda () (if (save-excursion | ||
| 322 | (goto-char (max (point-min) (- (point) 4))) | ||
| 323 | (looking-at " <f>")) | ||
| 324 | (forward-char -4)))))) | ||
| 325 | (setq list (sort list 'string<)) | 320 | (setq list (sort list 'string<)) |
| 326 | (or (eq predicate 'fboundp) | 321 | (or (eq predicate 'fboundp) |
| 327 | (let (new) | 322 | (let (new) |