Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 81ADA431FBC for ; Wed, 25 Nov 2009 14:14:47 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ve54J2jlTvsp for ; Wed, 25 Nov 2009 14:14:47 -0800 (PST) Received: from anholt.net (71-20-254-182.war.clearwire-wmx.net [71.20.254.182]) by olra.theworths.org (Postfix) with ESMTP id 08E4C431FAE for ; Wed, 25 Nov 2009 14:14:46 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by anholt.net (Postfix) with ESMTP id 35DF42C9C063; Wed, 25 Nov 2009 14:13:34 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at anholt.net Received: from anholt.net ([127.0.0.1]) by localhost (kingsolver.anholt.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id DDRBRr5+nn6i; Wed, 25 Nov 2009 14:13:34 -0800 (PST) Received: from gaiman.anholt.net (localhost [127.0.0.1]) by anholt.net (Postfix) with ESMTP id 003732C9C05F; Wed, 25 Nov 2009 14:13:34 -0800 (PST) Received: by gaiman.anholt.net (Postfix, from userid 1000) id 15E18162101; Wed, 25 Nov 2009 23:14:22 +0100 (CET) From: Eric Anholt To: notmuch@notmuchmail.org Date: Wed, 25 Nov 2009 14:14:20 -0800 Message-Id: <1259187260-24383-1-git-send-email-eric@anholt.net> X-Mailer: git-send-email 1.6.4.3 Cc: Eric Anholt Subject: [notmuch] [PATCH] notmuch.el: Require message mode to avoid undefined function in replies. X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Nov 2009 22:14:47 -0000 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