# HG changeset patch # User Richard M. Stallman # Date 908322992 0 # Node ID 4b8c40cf1931d107bae5bda0f080f65f61361ee6 # Parent 085606778286a4f6d3e7fc8b244f4b5d3900ff1e (lisp-complete-symbol): Don't bind completion-fixup-function. diff -r 085606778286 -r 4b8c40cf1931 lisp/emacs-lisp/lisp.el --- 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 " ")) - (forward-char -4)))))) + (let ((list (all-completions pattern obarray predicate))) (setq list (sort list 'string<)) (or (eq predicate 'fboundp) (let (new)