Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 9F5916DE0B25 for ; Sat, 6 Feb 2016 11:31:24 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: 0.653 X-Spam-Level: X-Spam-Status: No, score=0.653 tagged_above=-999 required=5 tests=[AWL=0.001, SPF_NEUTRAL=0.652] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id l0MczwI8O8Mu for ; Sat, 6 Feb 2016 11:31:22 -0800 (PST) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by arlo.cworth.org (Postfix) with ESMTP id 92A126DE09ED for ; Sat, 6 Feb 2016 11:31:22 -0800 (PST) Received: from guru.guru-group.fi (localhost [IPv6:::1]) by guru.guru-group.fi (Postfix) with ESMTP id 2E2F7100063; Sat, 6 Feb 2016 21:31:34 +0200 (EET) From: Tomi Ollila To: David Edmondson , notmuch@notmuchmail.org Subject: Re: [PATCH v1] emacs: Fix compiler warnings. In-Reply-To: <1454781343-870-1-git-send-email-dme@dme.org> References: <1454781343-870-1-git-send-email-dme@dme.org> User-Agent: Notmuch/0.21+32~g73439f8 (http://notmuchmail.org) Emacs/24.3.1 (x86_64-unknown-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.20 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: Sat, 06 Feb 2016 19:31:24 -0000 On Sat, Feb 06 2016, David Edmondson wrote: > notmuch-mua.el should declare functions that it uses from > notmuch-maildir-fcc.el. > --- > emacs/notmuch-mua.el | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el > index 5462f54..d4fad7b 100644 > --- a/emacs/notmuch-mua.el > +++ b/emacs/notmuch-mua.el > @@ -29,6 +29,8 @@ > (eval-when-compile (require 'cl)) > > (declare-function notmuch-show-insert-bodypart "notmuch-show" (msg part depth &optional hide)) > +(declare-function notmuch-fcc-header-setup "notmuch-maildir-fcc" ()) > +(declare-function notmuch-fcc-handler "notmuch-maildir-fcc" (destdir)) LGTM. Emacs mua still works ;D Tomi