[notmuch] [PATCH] notmuch.el: Require message mode to avoid undefined function in replies.

2009-11-27 Thread Carl Worth
On Wed, 25 Nov 2009 14:14:20 -0800, Eric Anholt  wrote:
> Otherwise, those without keithp's .emacs would end up with reply mode
> not being entered.  Suggested by keithp.

Thanks, Eric. The fact that replies were only sometimes in message-mode
was really annoying me. Should be nice to have this fixed. This is
pushed.

-Carl


[notmuch] [PATCH] notmuch.el: Require message mode to avoid undefined function in replies.

2009-11-25 Thread Eric Anholt
Otherwise, those without keithp's .emacs would end up with reply mode
not being entered.  Suggested by keithp.
---
 notmuch.el |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/notmuch.el b/notmuch.el
index 551048a..42d397a 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -49,6 +49,7 @@

 (require 'cl)
 (require 'mm-view)
+(require 'message)

 (defvar notmuch-show-mode-map
   (let ((map (make-sparse-keymap)))
-- 
1.6.4.3