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