From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id vJlbOFWYqF8ATQAA0tVLHw (envelope-from ) for ; Mon, 09 Nov 2020 01:16:05 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id MFDdM1WYqF/zMgAAbx9fmQ (envelope-from ) for ; Mon, 09 Nov 2020 01:16:05 +0000 Received: from mail.notmuchmail.org (nmbug.tethera.net [IPv6:2607:5300:201:3100::1657]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (2048 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 5289B94011C for ; Mon, 9 Nov 2020 01:16:05 +0000 (UTC) Received: from nmbug.tethera.net (localhost [127.0.0.1]) by mail.notmuchmail.org (Postfix) with ESMTP id 61F8728BE1; Sun, 8 Nov 2020 20:15:59 -0500 (EST) X-Greylist: delayed 397 seconds by postgrey-1.36 at nmbug; Sun, 08 Nov 2020 20:15:56 EST Received: from jb55.com (jb55.com [IPv6:2600:3c01::f03c:91ff:fe08:5bfb]) by mail.notmuchmail.org (Postfix) with ESMTPS id 52D29270EF for ; Sun, 8 Nov 2020 20:15:56 -0500 (EST) Received: from jb55.com ( [24.244.23.163]) by jb55.com (OpenSMTPD) with ESMTPSA id c6f486a3 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO); Mon, 9 Nov 2020 01:10:01 +0000 (UTC) From: William Casarin To: Jonas Bernoulli , notmuch@notmuchmail.org Subject: Re: [PATCH 01/27] emacs: silence byte-compiler In-Reply-To: <20201108190311.1397-2-jonas@bernoul.li> References: <20201108190311.1397-1-jonas@bernoul.li> <20201108190311.1397-2-jonas@bernoul.li> Date: Sun, 08 Nov 2020 17:09:13 -0800 Message-ID: <874klznxom.fsf@jb55.com> MIME-Version: 1.0 Message-ID-Hash: M5GF2P7WOEJYZBE54RYEXF5HMEYS3N7A X-Message-ID-Hash: M5GF2P7WOEJYZBE54RYEXF5HMEYS3N7A X-MailFrom: jb55@jb55.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-notmuch.notmuchmail.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header X-Mailman-Version: 3.2.1 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Help: List-Post: List-Subscribe: List-Unsubscribe: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Scanner: ns3122888.ip-94-23-21.eu Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of notmuch-bounces@notmuchmail.org designates 2607:5300:201:3100::1657 as permitted sender) smtp.mailfrom=notmuch-bounces@notmuchmail.org X-Spam-Score: -1.01 X-TUID: RUBg6IqJyaNe Jonas Bernoulli writes: > --- > emacs/notmuch-tree.el | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/emacs/notmuch-tree.el b/emacs/notmuch-tree.el > index f342f85a..7b1e34ca 100644 > --- a/emacs/notmuch-tree.el > +++ b/emacs/notmuch-tree.el > @@ -42,6 +42,11 @@ (declare-function notmuch-read-query "notmuch" (prompt)) > (declare-function notmuch-search-find-thread-id "notmuch" (&optional bare)) > (declare-function notmuch-search-find-subject "notmuch" ()) > > +;; For `notmuch-tree-next-thread-from-search'. > +(declare-function notmuch-search-next-thread "notmuch" ()) > +(declare-function notmuch-search-previous-thread "notmuch" ()) > +(declare-function notmuch-tree-from-search-thread "notmuch" ()) > + > ;; the following variable is defined in notmuch.el > (defvar notmuch-search-query-string) LGTM, I have a similar patch here: id:20200908171536.20679-1-jb55@jb55.com Reviewed-by: William Casarin