Re: search order
authorDavid Bremner <david@tethera.net>
Sun, 18 Aug 2013 14:32:18 +0000 (16:32 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:56:26 +0000 (09:56 -0800)
39/3560f1f661f783388a76e0ac7ca83773cbdbd5 [new file with mode: 0644]

diff --git a/39/3560f1f661f783388a76e0ac7ca83773cbdbd5 b/39/3560f1f661f783388a76e0ac7ca83773cbdbd5
new file mode 100644 (file)
index 0000000..58fc34e
--- /dev/null
@@ -0,0 +1,76 @@
+Return-Path: <david@tethera.net>\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 1DF05431FBF\r
+       for <notmuch@notmuchmail.org>; Sun, 18 Aug 2013 13:53:00 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 1.103\r
+X-Spam-Level: *\r
+X-Spam-Status: No, score=1.103 tagged_above=-999 required=5\r
+       tests=[DATE_IN_PAST_06_12=1.103] 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 wX-ZXRFqPp+L for <notmuch@notmuchmail.org>;\r
+       Sun, 18 Aug 2013 13:52:52 -0700 (PDT)\r
+Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
+       (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 29627431FBD\r
+       for <notmuch@notmuchmail.org>; Sun, 18 Aug 2013 13:52:52 -0700 (PDT)\r
+Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
+       (envelope-from <david@tethera.net>)\r
+       id 1VB9xu-00050i-Vf; Sun, 18 Aug 2013 17:52:46 -0300\r
+Received: (nullmailer pid 8987 invoked by uid 1000); Sun, 18 Aug 2013\r
+       14:32:18 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>, notmuch@notmuchmail.org\r
+Subject: Re: search order\r
+In-Reply-To:\r
+ <m2bo5c5h8l.fsf@ramakrmu-mac.i-did-not-set--mail-host-address--so-tickle-me>\r
+References:\r
+ <m2bo5c5h8l.fsf@ramakrmu-mac.i-did-not-set--mail-host-address--so-tickle-me>\r
+User-Agent: Notmuch/0.16 (http://notmuchmail.org) Emacs/24.3.1\r
+       (x86_64-pc-linux-gnu)\r
+Date: Sun, 18 Aug 2013 16:32:18 +0200\r
+Message-ID: <87vc33oyrx.fsf@maritornes.cs.unb.ca>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\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, 18 Aug 2013 20:53:00 -0000\r
+\r
+Ramakrishnan Muthukrishnan <ram@rkrishnan.org> writes:\r
+\r
+> If I startup notmuch and then do a M-x notmuch-search and then *, I see\r
+> the messages with the newest on the top. But if I instead, startup\r
+> notmuch and then hit "s", I see that the new messages are at the\r
+> bottom. The value of notmuch-search-oldest-first is t. \r
+\r
+I had a quick look at this, and I think the issue is as follows:\r
+notmuch-search takes an extra parameter for the order, and does not\r
+directly look at notmuch-search-oldest-first.  notmuch-hello-search\r
+works better in this case because it calls notmuch-search with\r
+notmuch-search-oldest-first as one of it's parameters. The simplest\r
+solution would be to make another helper function like\r
+\r
+(defun notmuch-search-interactive ()\r
+  (interactive)\r
+  (notmuch-search nil notmuch-search-oldest-first))\r
+\r
+I don't know if notmuch-search should remain interactive, or perhaps be\r
+renamed and have interactive removed (with the new helper replacing it).\r
+I guess that might break some user code.\r
+\r
+d\r