[PATCH 02/10] search: Support --use-schema
[notmuch-archives.git] / a0 / 4b5e89bc4e5664cf605b4018be3cc3bde17bca
1 Return-Path: <dme@dme.org>\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 05C8C431FD0\r
6         for <notmuch@notmuchmail.org>; Wed, 28 Dec 2011 07:04:36 -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: -0.7\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_LOW=-0.7] 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 sNSGmc3pPB7q for <notmuch@notmuchmail.org>;\r
16         Wed, 28 Dec 2011 07:04:35 -0800 (PST)\r
17 Received: from mail-we0-f181.google.com (mail-we0-f181.google.com\r
18         [74.125.82.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 7B388431FB6\r
21         for <notmuch@notmuchmail.org>; Wed, 28 Dec 2011 07:04:35 -0800 (PST)\r
22 Received: by werm12 with SMTP id m12so7281053wer.26\r
23         for <notmuch@notmuchmail.org>; Wed, 28 Dec 2011 07:04:34 -0800 (PST)\r
24 Received: by 10.216.131.223 with SMTP id m73mr23012637wei.52.1325084674358;\r
25         Wed, 28 Dec 2011 07:04:34 -0800 (PST)\r
26 Received: from hotblack-desiato.hh.sledj.net\r
27         (host81-149-164-25.in-addr.btopenworld.com. [81.149.164.25])\r
28         by mx.google.com with ESMTPS id g12sm8182733wiw.10.2011.12.28.07.04.32\r
29         (version=TLSv1/SSLv3 cipher=OTHER);\r
30         Wed, 28 Dec 2011 07:04:33 -0800 (PST)\r
31 Received: by hotblack-desiato.hh.sledj.net (Postfix, from userid 30000)\r
32         id 435B1A04BC; Wed, 28 Dec 2011 15:04:31 +0000 (GMT)\r
33 From: David Edmondson <dme@dme.org>\r
34 To: notmuch@notmuchmail.org\r
35 Subject: [PATCH 1/2] emacs: Enable more text/plain hook functions by default.\r
36 Date: Wed, 28 Dec 2011 15:04:27 +0000\r
37 Message-Id: <1325084668-4309-1-git-send-email-dme@dme.org>\r
38 X-Mailer: git-send-email 1.7.7.3\r
39 In-Reply-To: <1324987225-3067-1-git-send-email-dme@dme.org>\r
40 References: <1324987225-3067-1-git-send-email-dme@dme.org>\r
41 X-BeenThere: notmuch@notmuchmail.org\r
42 X-Mailman-Version: 2.1.13\r
43 Precedence: list\r
44 List-Id: "Use and development of the notmuch mail system."\r
45         <notmuch.notmuchmail.org>\r
46 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
48 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
49 List-Post: <mailto:notmuch@notmuchmail.org>\r
50 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
51 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
53 X-List-Received-Date: Wed, 28 Dec 2011 15:04:36 -0000\r
54 \r
55 Users are missing out on various functions which usefully improve the\r
56 display of text/plain message parts because they are not enabled by\r
57 default. Enable a useful set.\r
58 \r
59 `notmuch-wash-convert-inline-patch-to-part' is _not_ enabled by\r
60 default as it is based on a heuristic.\r
61 ---\r
62  emacs/notmuch-show.el |    5 ++++-\r
63  1 files changed, 4 insertions(+), 1 deletions(-)\r
64 \r
65 diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el\r
66 index 6ef3f90..5502efd 100644\r
67 --- a/emacs/notmuch-show.el\r
68 +++ b/emacs/notmuch-show.el\r
69 @@ -75,7 +75,10 @@ any given message."\r
70    :group 'notmuch\r
71    :type 'hook)\r
72  \r
73 -(defcustom notmuch-show-insert-text/plain-hook '(notmuch-wash-excerpt-citations)\r
74 +(defcustom notmuch-show-insert-text/plain-hook '(notmuch-wash-wrap-long-lines\r
75 +                                                notmuch-wash-tidy-citations\r
76 +                                                notmuch-wash-elide-blank-lines\r
77 +                                                notmuch-wash-excerpt-citations)\r
78    "Functions used to improve the display of text/plain parts."\r
79    :group 'notmuch\r
80    :type 'hook\r
81 -- \r
82 1.7.7.3\r
83 \r