diff options
author | Glenn Morris <rgm@gnu.org> | 2008-11-13 04:38:10 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-11-13 04:38:10 +0000 |
commit | 29c2869d40ffa43c4082120aa189aa3580a19138 (patch) | |
tree | 33a4ecc6c9aad3e67ee191bb5c8dd9d0ec159158 /lisp/net/mairix.el | |
parent | 2cc7988b9a5a77531668ae80551af0494ffbaa3e (diff) | |
download | emacs-29c2869d40ffa43c4082120aa189aa3580a19138.tar.gz emacs-29c2869d40ffa43c4082120aa189aa3580a19138.tar.bz2 emacs-29c2869d40ffa43c4082120aa189aa3580a19138.zip |
Henry Weller <hweller0 at gmail.com> (tiny change)
(mairix-widget-fields-list): Fix bug regarding searching in mail bodies.
Diffstat (limited to 'lisp/net/mairix.el')
-rw-r--r-- | lisp/net/mairix.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/mairix.el b/lisp/net/mairix.el index 9582d16322a..575ddfa07cf 100644 --- a/lisp/net/mairix.el +++ b/lisp/net/mairix.el @@ -201,7 +201,7 @@ The default chooses the largest window in the current frame." (defvar mairix-widget-fields-list '(("from" "f" "From") ("to" "t" "To") ("cc" "c" "Cc") ("subject" "s" "Subject") ("to" "tc" "To or Cc") - ("from" "a" "Address") (nil "Body" "b") (nil "n" "Attachment") + ("from" "a" "Address") (nil "b" "Body") (nil "n" "Attachment") ("Message-ID" "m" "Message ID") (nil "s" "Size") (nil "d" "Date")) "Fields that should be editable during interactive query customization. Header, corresponding mairix command and description for editable |