diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-11-08 00:31:14 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-11-08 00:31:14 +0000 |
commit | ecd91f5fea97ea2b69c17cedd24c353ef31c3815 (patch) | |
tree | 36f90bd4ce31f84ecef89d1b21aeebe6fbd394c8 /lisp/dabbrev.el | |
parent | 7263bb10866826cf1f08e8d28584521565c76247 (diff) | |
download | emacs-ecd91f5fea97ea2b69c17cedd24c353ef31c3815.tar.gz |
(dabbrev-completion): Use "*Completions*".
Diffstat (limited to 'lisp/dabbrev.el')
-rw-r--r-- | lisp/dabbrev.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dabbrev.el b/lisp/dabbrev.el index 0f0f85b4255..b0858565703 100644 --- a/lisp/dabbrev.el +++ b/lisp/dabbrev.el @@ -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)) |