From 08166ee946ae1c8c6c86b003c464857d507a42da Mon Sep 17 00:00:00 2001 From: Bill Wohler Date: Tue, 31 Jan 2006 20:19:50 +0000 Subject: [PATCH] (mh-complete-word): Fix bug in call to mh-display-completion-list. Wrong argument was passed, so completions wouldn't show highlighted prefix. --- lisp/mh-e/mh-letter.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2