diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/dabbrev.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6427e0a3c6d..f43f956ba1f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-11-07 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * dabbrev.el (dabbrev-completion): Use "*Completions*". | ||
| 4 | |||
| 1 | 2001-11-07 Paul Eggert <eggert@twinsun.com> | 5 | 2001-11-07 Paul Eggert <eggert@twinsun.com> |
| 2 | 6 | ||
| 3 | * dired.el (dired-move-to-filename-regexp): | 7 | * dired.el (dired-move-to-filename-regexp): |
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." | |||
| 443 | (t | 443 | (t |
| 444 | ;; * String is a common substring completion already. Make list. | 444 | ;; * String is a common substring completion already. Make list. |
| 445 | (message "Making completion list...") | 445 | (message "Making completion list...") |
| 446 | (with-output-to-temp-buffer " *Completions*" | 446 | (with-output-to-temp-buffer "*Completions*" |
| 447 | (display-completion-list (all-completions init my-obarray))) | 447 | (display-completion-list (all-completions init my-obarray))) |
| 448 | (message "Making completion list...done"))) | 448 | (message "Making completion list...done"))) |
| 449 | (and (window-minibuffer-p (selected-window)) | 449 | (and (window-minibuffer-p (selected-window)) |