# HG changeset patch # User Alex Schroeder # Date 1141329975 0 # Node ID f4e367893df94296eaeb42450a4ec4aada2bdbd4 # Parent f2334bdf1c2eb4721f0130e1dcddbf550e3654a5 (rmail-read-label): Since rmail-keywords is a list of symbols, we need to transform it into an alist for completion. diff -r f2334bdf1c2e -r f4e367893df9 lisp/mail/rmailkwd.el --- a/lisp/mail/rmailkwd.el Wed Mar 01 07:18:39 2006 +0000 +++ b/lisp/mail/rmailkwd.el Thu Mar 02 20:06:15 2006 +0000 @@ -137,7 +137,8 @@ (concat prompt (if rmail-last-label (concat " (default " default "): ") ": ")) - rmail-keywords nil nil nil nil default))))) + (mapcar 'list rmail-keywords) + nil nil nil nil default))))) (setq rmail-last-label (rmail-make-label result t)) ;; return the string, not the symbol result)))