]> git.eshelyaron.com Git - emacs.git/commitdiff
message.el (message-read-from-minibuffer): Make abbrev expansion work.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 15 Sep 2011 01:08:08 +0000 (01:08 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 15 Sep 2011 01:08:08 +0000 (01:08 +0000)
lisp/gnus/ChangeLog
lisp/gnus/message.el

index a89dc713dd81f1b6fd7403cc65266bd01c31d255..39afcb0cef60c5a0c7443921e2f97567e687d335 100644 (file)
@@ -1,3 +1,7 @@
+2011-09-15  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * message.el (message-read-from-minibuffer): Make abbrev expansion work.
+
 2011-09-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * gnus.el (gnus-interactive-exit): Update defcustom spec.
index f78e2b0339d36fa0dfb5d66224562f160b393a7a..8dac0fd7afeafd778cd068afab85ed3bc77c6e2b 100644 (file)
@@ -8068,10 +8068,10 @@ regexp VARSTR."
 (defun message-read-from-minibuffer (prompt &optional initial-contents)
   "Read from the minibuffer while providing abbrev expansion."
   (if (fboundp 'mail-abbrevs-setup)
-      (let ((mail-abbrev-mode-regexp "")
-           (minibuffer-setup-hook 'mail-abbrevs-setup)
+      (let ((minibuffer-setup-hook 'mail-abbrevs-setup)
            (minibuffer-local-map message-minibuffer-local-map))
-       (read-from-minibuffer prompt initial-contents))
+       (flet ((mail-abbrev-in-expansion-header-p nil t))
+         (read-from-minibuffer prompt initial-contents)))
     (let ((minibuffer-setup-hook 'mail-abbrev-minibuffer-setup-hook)
          (minibuffer-local-map message-minibuffer-local-map))
       (read-string prompt initial-contents))))