Mercurial > emacs
changeset 68519:bf46ace1ce4e
(mh-complete-word): Fix bug in call to mh-display-completion-list.
Wrong argument was passed, so completions wouldn't show highlighted
prefix.
author | Bill Wohler <wohler@newt.com> |
---|---|
date | Tue, 31 Jan 2006 20:19:50 +0000 |
parents | cf867c84ce1f |
children | 6a7173abcf59 |
files | lisp/mh-e/mh-letter.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mh-e/mh-letter.el Tue Jan 31 18:39:50 2006 +0000 +++ b/lisp/mh-e/mh-letter.el Tue Jan 31 20:19:50 2006 +0000 @@ -894,7 +894,7 @@ (if (equal word completion) (with-output-to-temp-buffer completions-buffer (mh-display-completion-list (all-completions word choices) - choices)) + word)) (ignore-errors (kill-buffer completions-buffer)) (delete-region begin end)