Re: [PATCH] emacs: bugfix unquoted symbol
[notmuch-archives.git] / ca / 659599986fd88c52cc04dc6c0fc64365c2f349
1 Return-Path: <tomi.ollila@iki.fi>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 244D3431FAF\r
6         for <notmuch@notmuchmail.org>; Sun, 15 Sep 2013 00:32:39 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id kUi2rATS7JUO for <notmuch@notmuchmail.org>;\r
16         Sun, 15 Sep 2013 00:32:31 -0700 (PDT)\r
17 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
18         by olra.theworths.org (Postfix) with ESMTP id 5DCBB431FAE\r
19         for <notmuch@notmuchmail.org>; Sun, 15 Sep 2013 00:32:31 -0700 (PDT)\r
20 Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
21         by guru.guru-group.fi (Postfix) with ESMTP id 2EEDB1000B2;\r
22         Sun, 15 Sep 2013 10:32:25 +0300 (EEST)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: Mark Walters <markwalters1009@gmail.com>, notmuch@notmuchmail.org\r
25 Subject: Re: [PATCH] emacs: bugfix unquoted symbol\r
26 In-Reply-To: <1379189827-21363-1-git-send-email-markwalters1009@gmail.com>\r
27 References: <1379189827-21363-1-git-send-email-markwalters1009@gmail.com>\r
28 User-Agent: Notmuch/0.16+77~g2561895 (http://notmuchmail.org) Emacs/24.3.1\r
29         (x86_64-unknown-linux-gnu)\r
30 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
31         $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
32         !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
33 Date: Sun, 15 Sep 2013 10:32:24 +0300\r
34 Message-ID: <m21u4qa6bb.fsf@guru.guru-group.fi>\r
35 MIME-Version: 1.0\r
36 Content-Type: text/plain\r
37 X-BeenThere: notmuch@notmuchmail.org\r
38 X-Mailman-Version: 2.1.13\r
39 Precedence: list\r
40 List-Id: "Use and development of the notmuch mail system."\r
41         <notmuch.notmuchmail.org>\r
42 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
43         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
44 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
45 List-Post: <mailto:notmuch@notmuchmail.org>\r
46 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
47 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
49 X-List-Received-Date: Sun, 15 Sep 2013 07:32:39 -0000\r
50 \r
51 On Sat, Sep 14 2013, Mark Walters <markwalters1009@gmail.com> wrote:\r
52 \r
53 > In the recent changes for search order handling the default-value of\r
54 > notmuch-search-oldest-first was used. However, default-value needs a\r
55 > symbol so the symbol-name needs to be quoted.\r
56 >\r
57 > This missing quote was causing strange sort-orders in some cases.\r
58 > ---\r
59 >\r
60 > I think this is clearly correct (and what was intended) and it seems\r
61 > to work as expected.\r
62 \r
63 Marked ready.\r
64 \r
65 >\r
66 > Best wishes\r
67 >\r
68 > Mark\r
69 >\r
70 \r
71 Tomi\r
72 \r
73 >\r
74 >\r
75 >\r
76 >  emacs/notmuch.el |    2 +-\r
77 >  1 files changed, 1 insertions(+), 1 deletions(-)\r
78 >\r
79 > diff --git a/emacs/notmuch.el b/emacs/notmuch.el\r
80 > index 4de6229..0ff248b 100644\r
81 > --- a/emacs/notmuch.el\r
82 > +++ b/emacs/notmuch.el\r
83 > @@ -888,7 +888,7 @@ the configured default sort order."\r
84 >      nil\r
85 >      ;; Use the default search order (if we're doing a search from a\r
86 >      ;; search buffer, ignore any buffer-local overrides)\r
87 > -    (default-value notmuch-search-oldest-first)))\r
88 > +    (default-value 'notmuch-search-oldest-first)))\r
89 >  \r
90 >    (let* ((query (or query (notmuch-read-query "Notmuch search: ")))\r
91 >        (buffer (get-buffer-create (notmuch-search-buffer-title query))))\r
92 > -- \r
93 > 1.7.9.1\r
94 >\r
95 > _______________________________________________\r
96 > notmuch mailing list\r
97 > notmuch@notmuchmail.org\r
98 > http://notmuchmail.org/mailman/listinfo/notmuch\r