From: Bill Wohler Date: Tue, 31 Jan 2006 20:19:50 +0000 (+0000) Subject: (mh-complete-word): Fix bug in call to mh-display-completion-list. X-Git-Tag: emacs-pretest-22.0.90~4459 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=08166ee946ae1c8c6c86b003c464857d507a42da;p=emacs.git (mh-complete-word): Fix bug in call to mh-display-completion-list. Wrong argument was passed, so completions wouldn't show highlighted prefix. --- diff --git a/lisp/mh-e/mh-letter.el b/lisp/mh-e/mh-letter.el index dfa96c63b5a..a5a7af24e91 100644 --- a/lisp/mh-e/mh-letter.el +++ b/lisp/mh-e/mh-letter.el @@ -894,7 +894,7 @@ Any match found replaces the text from BEGIN to END." (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)