1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-13 06:50:39 -08:00

(dabbrev-completion): Use "*Completions*".

This commit is contained in:
Stefan Monnier 2001-11-08 00:31:14 +00:00
parent 7263bb1086
commit ecd91f5fea
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-11-07 Stefan Monnier <monnier@cs.yale.edu>
* dabbrev.el (dabbrev-completion): Use "*Completions*".
2001-11-07 Paul Eggert <eggert@twinsun.com>
* dired.el (dired-move-to-filename-regexp):

View file

@ -443,7 +443,7 @@ if there is a suitable one already."
(t
;; * String is a common substring completion already. Make list.
(message "Making completion list...")
(with-output-to-temp-buffer " *Completions*"
(with-output-to-temp-buffer "*Completions*"
(display-completion-list (all-completions init my-obarray)))
(message "Making completion list...done")))
(and (window-minibuffer-p (selected-window))