Re: [PATCH] lib: reword comment about XFOLDER: prefix
[notmuch-archives.git] / 7d / 4a91b1bfe3b2fa3059e3600188b51a6198817d
1 Return-Path: <bremner@tesseract.cs.unb.ca>\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 236E8431FC9\r
6         for <notmuch@notmuchmail.org>; Thu, 22 Jan 2015 00:39:34 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 2.438\r
10 X-Spam-Level: **\r
11 X-Spam-Status: No, score=2.438 tagged_above=-999 required=5\r
12         tests=[DNS_FROM_AHBL_RHSBL=2.438] 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 66hHeuW44+18 for <notmuch@notmuchmail.org>;\r
16         Thu, 22 Jan 2015 00:39:31 -0800 (PST)\r
17 Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
18         [87.98.215.224])\r
19         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id 5664C431FBC\r
22         for <notmuch@notmuchmail.org>; Thu, 22 Jan 2015 00:39:31 -0800 (PST)\r
23 Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
24         4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
25         id 1YEDGx-0006LM-VS; Thu, 22 Jan 2015 08:37:51 +0000\r
26 Received: (nullmailer pid 14038 invoked by uid 1000); Thu, 22 Jan 2015\r
27         08:37:38 -0000\r
28 From: David Bremner <david@tethera.net>\r
29 To: Jinwoo Lee <jinwoo68@gmail.com>, David Bremner <david@tethera.net>,\r
30         notmuch@notmuchmail.org\r
31 Subject: [PATCH] emacs: escape % in header line format\r
32 Date: Thu, 22 Jan 2015 09:37:32 +0100\r
33 Message-Id: <1421915852-13963-1-git-send-email-david@tethera.net>\r
34 X-Mailer: git-send-email 2.1.4\r
35 In-Reply-To: <yq657fwfcjt5.fsf@jinwoo-macbookair.roam.corp.google.com>\r
36 References: <yq657fwfcjt5.fsf@jinwoo-macbookair.roam.corp.google.com>\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: Thu, 22 Jan 2015 08:39:34 -0000\r
50 \r
51 We set header-line-format to the message subject, but if the subject\r
52 contains percents, the next character is interpreted as a formatting\r
53 control, which is not desired.\r
54 ---\r
55 \r
56 You're correct of course. I have no idea how my testing convinced me\r
57 the previous version worked.\r
58 \r
59 emacs/notmuch-show.el | 6 +++++-\r
60  1 file changed, 5 insertions(+), 1 deletion(-)\r
61 \r
62 diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el\r
63 index 9f6fe07..87b4881 100644\r
64 --- a/emacs/notmuch-show.el\r
65 +++ b/emacs/notmuch-show.el\r
66 @@ -1198,7 +1198,11 @@ function is used."\r
67        (notmuch-show-mapc (lambda () (notmuch-show-set-prop :orig-tags (notmuch-show-get-tags))))\r
68  \r
69        ;; Set the header line to the subject of the first message.\r
70 -      (setq header-line-format (notmuch-sanitize (notmuch-show-strip-re (notmuch-show-get-subject))))\r
71 +      (setq header-line-format\r
72 +           (replace-regexp-in-string "%" "%%"\r
73 +                           (notmuch-sanitize\r
74 +                            (notmuch-show-strip-re\r
75 +                             (notmuch-show-get-subject)))))\r
76  \r
77        (run-hooks 'notmuch-show-hook))))\r
78  \r
79 -- \r
80 2.1.4\r
81 \r