diff options
| author | Leo Liu | 2012-09-28 21:42:19 +0800 |
|---|---|---|
| committer | Leo Liu | 2012-09-28 21:42:19 +0800 |
| commit | 147c0425024ce9c1dbb7301300867d8563a6730a (patch) | |
| tree | b967938f0a234c4197fa9851224fb33506692e19 | |
| parent | 9c1228c32346c2b4ccb3dbb5b3b6eb5673c8dd6a (diff) | |
| download | emacs-147c0425024ce9c1dbb7301300867d8563a6730a.tar.gz emacs-147c0425024ce9c1dbb7301300867d8563a6730a.zip | |
Use minibuffer-message in pcomplete-show-completions
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/pcomplete.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4878f5eb467..6c19de9e43d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-09-28 Leo Liu <sdl.web@gmail.com> | 1 | 2012-09-28 Leo Liu <sdl.web@gmail.com> |
| 2 | 2 | ||
| 3 | * pcomplete.el (pcomplete-show-completions): Use | ||
| 4 | minibuffer-message to make pcomplete usable in minibuffer. | ||
| 5 | |||
| 3 | * ido.el (ido-set-matches-1): Fix 2012-09-11 change. | 6 | * ido.el (ido-set-matches-1): Fix 2012-09-11 change. |
| 4 | 7 | ||
| 5 | 2012-09-16 Leo Liu <sdl.web@gmail.com> | 8 | 2012-09-16 Leo Liu <sdl.web@gmail.com> |
diff --git a/lisp/pcomplete.el b/lisp/pcomplete.el index cad2ffb2a2c..60247416bb1 100644 --- a/lisp/pcomplete.el +++ b/lisp/pcomplete.el | |||
| @@ -1139,7 +1139,7 @@ Typing SPC flushes the help buffer." | |||
| 1139 | (setq pcomplete-last-window-config (current-window-configuration))) | 1139 | (setq pcomplete-last-window-config (current-window-configuration))) |
| 1140 | (with-output-to-temp-buffer "*Completions*" | 1140 | (with-output-to-temp-buffer "*Completions*" |
| 1141 | (display-completion-list completions)) | 1141 | (display-completion-list completions)) |
| 1142 | (message "Hit space to flush") | 1142 | (minibuffer-message "Hit space to flush") |
| 1143 | (let (event) | 1143 | (let (event) |
| 1144 | (prog1 | 1144 | (prog1 |
| 1145 | (catch 'done | 1145 | (catch 'done |