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 6A9DD431E64 for ; Sun, 11 May 2014 01:35:09 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled 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 64e+91V-LcID for ; Sun, 11 May 2014 01:35:03 -0700 (PDT) Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 5A6BD431FC7 for ; Sun, 11 May 2014 01:34:57 -0700 (PDT) Received: by mail-wg0-f47.google.com with SMTP id x12so5517957wgg.18 for ; Sun, 11 May 2014 01:34:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=5sr0UEXh3zWHfPgyxi1vcEvm0YzkL1cUWA0c9NIUx74=; b=gharqd1Tak5qMQdaPA6/fIh9XWOHU2okz6iDEPto+loow/rWwWVRn4PR8ZtIN/Bg3B r3JiYZP4n/aoaZ+wI0sycCvIioqjN++mGZWfdRDPYJdUr4QTk0O+Bnf/HBmDE99Hw/ds Tx7OSqbOkHrmARZ88bsEvELlnhnhU6qac/DVEghHZzegoQZ72Pd5tOh+CzHqP6+YCCfk SJSdCUucLW8ErZyI/XCwaKY5zNfARAeVMdxsJ7gdORGabB28QjK0ggzw3RqPA7kyVxKo lamzmiHRPUIZYUJMOhtvpoKnubCyLhavnVFFusTYae1N50UXnMXxb/jsvsg1qP5nlRmu n2Rw== X-Received: by 10.194.92.7 with SMTP id ci7mr16294452wjb.7.1399797296233; Sun, 11 May 2014 01:34:56 -0700 (PDT) Received: from localhost (5751dfa2.skybroadband.com. [87.81.223.162]) by mx.google.com with ESMTPSA id fz11sm9103358wic.4.2014.05.11.01.34.55 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 11 May 2014 01:34:55 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH 5/7] emacs: hello: require cl Date: Sun, 11 May 2014 09:34:40 +0100 Message-Id: <1399797282-20389-6-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1399797282-20389-1-git-send-email-markwalters1009@gmail.com> References: <1399797282-20389-1-git-send-email-markwalters1009@gmail.com> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 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: Sun, 11 May 2014 08:35:09 -0000 We will use cl at runtime in the next patch so require cl (rather than just having it eval-when-compile). We require it in notmuch-lib anyway so this is no loss in requiring it here too. --- emacs/notmuch-hello.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el index 6b2dedc..28e16be 100644 --- a/emacs/notmuch-hello.el +++ b/emacs/notmuch-hello.el @@ -19,7 +19,7 @@ ;; ;; Authors: David Edmondson -(eval-when-compile (require 'cl)) +(require 'cl) (require 'widget) (require 'wid-edit) ; For `widget-forward'. @@ -1017,3 +1017,7 @@ (defun notmuch-folder () ;; (provide 'notmuch-hello) + +;; Local Variables: +;; byte-compile-warnings: (not cl-functions) +;; End: -- 1.7.10.4