Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / f6 / 0ad81a7197b8a9b8ac5c91dca8347ea3f735a6
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 E15A8431FC9\r
6         for <notmuch@notmuchmail.org>; Wed, 21 Jan 2015 23:20:16 -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 FYa2LuTjawkW for <notmuch@notmuchmail.org>;\r
16         Wed, 21 Jan 2015 23:20:13 -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 95DED431FBC\r
22         for <notmuch@notmuchmail.org>; Wed, 21 Jan 2015 23:20:13 -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 1YEC27-00065U-Ly; Thu, 22 Jan 2015 07:18:27 +0000\r
26 Received: (nullmailer pid 31610 invoked by uid 1000); Thu, 22 Jan 2015\r
27         07:18:14 -0000\r
28 From: David Bremner <david@tethera.net>\r
29 To: Jinwoo Lee <jinwoo68@gmail.com>, notmuch@notmuchmail.org\r
30 Subject: [PATCH] emacs: escape % in header line format\r
31 Date: Thu, 22 Jan 2015 08:18:09 +0100\r
32 Message-Id: <1421911089-31509-1-git-send-email-david@tethera.net>\r
33 X-Mailer: git-send-email 2.1.4\r
34 In-Reply-To: <yq65ppa735xc.fsf@jinwoo-macbookair.roam.corp.google.com>\r
35 References: <yq65ppa735xc.fsf@jinwoo-macbookair.roam.corp.google.com>\r
36 X-BeenThere: notmuch@notmuchmail.org\r
37 X-Mailman-Version: 2.1.13\r
38 Precedence: list\r
39 List-Id: "Use and development of the notmuch mail system."\r
40         <notmuch.notmuchmail.org>\r
41 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
43 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
44 List-Post: <mailto:notmuch@notmuchmail.org>\r
45 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
46 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
48 X-List-Received-Date: Thu, 22 Jan 2015 07:20:17 -0000\r
49 \r
50 We set header-line-format to the message subject, but if the subject\r
51 contains percents, the next character is interpreted as a formatting\r
52 control, which is not desired.\r
53 ---\r
54 \r
55 Ironically you have to apply this patch to read it's subject properly\r
56 ;).  There is whitespace change here because the original line was way\r
57 too long.\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..4258d43 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-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