]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp-complete-symbol): Don't bind completion-fixup-function.
authorRichard M. Stallman <rms@gnu.org>
Tue, 13 Oct 1998 23:56:32 +0000 (23:56 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 13 Oct 1998 23:56:32 +0000 (23:56 +0000)
lisp/emacs-lisp/lisp.el

index d2effa5d88cd8d73c3e8d14113b807da6510a14e..ceedda40fcba1d4e97e0519e246118d96281abbe 100644 (file)
@@ -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)