[PATCH] emacs: Don't signal an error when reaching the end of the search results.
authorDavid Edmondson <dme@dme.org>
Tue, 20 Dec 2011 08:45:14 +0000 (08:45 +0000)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:41:05 +0000 (09:41 -0800)
55/5c2d82b4b075627bd57cc35c41df201f93351d [new file with mode: 0644]

diff --git a/55/5c2d82b4b075627bd57cc35c41df201f93351d b/55/5c2d82b4b075627bd57cc35c41df201f93351d
new file mode 100644 (file)
index 0000000..ebd36cf
--- /dev/null
@@ -0,0 +1,79 @@
+Return-Path: <dme@dme.org>\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 46B63431FD0\r
+       for <notmuch@notmuchmail.org>; Tue, 20 Dec 2011 00:45:20 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -0.7\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5\r
+       tests=[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 XMS7OSPCEeFp for <notmuch@notmuchmail.org>;\r
+       Tue, 20 Dec 2011 00:45:20 -0800 (PST)\r
+Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com\r
+ [74.125.82.45])       (using TLSv1 with cipher RC4-SHA (128/128 bits))        (No client\r
+ certificate requested)        by olra.theworths.org (Postfix) with ESMTPS id\r
+ B4A40431FB6   for <notmuch@notmuchmail.org>; Tue, 20 Dec 2011 00:45:19 -0800\r
+ (PST)\r
+Received: by wgbds13 with SMTP id ds13so9839830wgb.2\r
+       for <notmuch@notmuchmail.org>; Tue, 20 Dec 2011 00:45:18 -0800 (PST)\r
+Received: by 10.216.138.210 with SMTP id a60mr598430wej.32.1324370718469;\r
+       Tue, 20 Dec 2011 00:45:18 -0800 (PST)\r
+Received: from hotblack-desiato.hh.sledj.net\r
+       (host81-149-164-25.in-addr.btopenworld.com. [81.149.164.25])\r
+       by mx.google.com with ESMTPS id k5sm2549548wiz.9.2011.12.20.00.45.17\r
+       (version=TLSv1/SSLv3 cipher=OTHER);\r
+       Tue, 20 Dec 2011 00:45:17 -0800 (PST)\r
+Received: by hotblack-desiato.hh.sledj.net (Postfix, from userid 30000)\r
+       id 1F63EA029E; Tue, 20 Dec 2011 08:45:16 +0000 (GMT)\r
+From: David Edmondson <dme@dme.org>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH] emacs: Don't signal an error when reaching the end of the\r
+       search results.\r
+Date: Tue, 20 Dec 2011 08:45:14 +0000\r
+Message-Id: <1324370714-28545-1-git-send-email-dme@dme.org>\r
+X-Mailer: git-send-email 1.7.7.3\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: Tue, 20 Dec 2011 08:45:20 -0000\r
+\r
+With the default configuration ('space' moves through the messages\r
+matching the search and back to the results index at the end) it's\r
+unnecessary to signal an error when the last message has been read, as\r
+this is the common case.\r
+\r
+Moreover, it's very annoying when `debug-on-error' is t.\r
+---\r
+ emacs/notmuch.el |    2 +-\r
+ 1 files changed, 1 insertions(+), 1 deletions(-)\r
+\r
+diff --git a/emacs/notmuch.el b/emacs/notmuch.el\r
+index 675a110..2e9973e 100644\r
+--- a/emacs/notmuch.el\r
++++ b/emacs/notmuch.el\r
+@@ -438,7 +438,7 @@ Complete list of currently available key bindings:\r
+                                "*")\r
+                        32 nil nil t))\r
+                     crypto-switch)\r
+-      (error "End of search results"))))\r
++      (message "End of search results."))))\r
\r
+ (defun notmuch-search-reply-to-thread (&optional prompt-for-sender)\r
+   "Begin composing a reply to the entire current thread in a new buffer."\r
+-- \r
+1.7.7.3\r
+\r