changeset 23451:4b8c40cf1931

(lisp-complete-symbol): Don't bind completion-fixup-function.
author Richard M. Stallman <rms@gnu.org>
date Tue, 13 Oct 1998 23:56:32 +0000
parents 085606778286
children f0077d5425f2
files lisp/emacs-lisp/lisp.el
diffstat 1 files changed, 1 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp.el	Tue Oct 13 23:55:45 1998 +0000
+++ b/lisp/emacs-lisp/lisp.el	Tue Oct 13 23:56:32 1998 +0000
@@ -316,12 +316,7 @@
 	   (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)