Re: Applying patches directly from emails?
[notmuch-archives.git] / 2d / 7b9f49f4dc986f562e93f23464834e1f9212a4
1 Return-Path: <markwalters1009@gmail.com>\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 AEDCA431FB6\r
6         for <notmuch@notmuchmail.org>; Mon, 23 Sep 2013 12:53:14 -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.201\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.201 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
13         FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001,\r
14         RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
15 Received: from olra.theworths.org ([127.0.0.1])\r
16         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
17         with ESMTP id GQMvOU53pkyK for <notmuch@notmuchmail.org>;\r
18         Mon, 23 Sep 2013 12:53:07 -0700 (PDT)\r
19 Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com\r
20         [209.85.212.179]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
21         (No client certificate requested)\r
22         by olra.theworths.org (Postfix) with ESMTPS id DD5B6431FBC\r
23         for <notmuch@notmuchmail.org>; Mon, 23 Sep 2013 12:53:06 -0700 (PDT)\r
24 Received: by mail-wi0-f179.google.com with SMTP id hm2so2768874wib.12\r
25         for <notmuch@notmuchmail.org>; Mon, 23 Sep 2013 12:53:05 -0700 (PDT)\r
26 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;\r
27         h=from:to:cc:subject:date:message-id;\r
28         bh=k4tBi+QdprUBAeK/iyoHzdVbt8z9zjY8TtdZTwR81b0=;\r
29         b=l/P3IhuWEjogjuUZ8D9hXMFqTw/7dCXtCsbt0PzAPDvYdZuey3Ve3vEvFROhqAwt0e\r
30         7dPdar/DM7smuPwVqC/TWWRzUefg6L4PW5uSiTSa1+OSxiWrOyKkcyCQ9jOnMWuKchyS\r
31         X88Whc3fDavmS+vN+GZjhwRSHD33HoJaJTFF7BM0gHwBMfFllWq3A9sQLiLlqhS4bjlR\r
32         QCBsK0KlfKj1zRhrLG2+vsf3JPOU8b67P1i5gAra1xPFuAJOkP6ZvmZR/znmDQB1Y7Eq\r
33         G+pB01CxpVsIrwSJ/0TUv2lFuou3NPIuK07FVJ195qanIWFY14whj9l4Ww725aHZKEzA\r
34         OAzg==\r
35 X-Received: by 10.180.90.19 with SMTP id bs19mr14757202wib.15.1379965984348;\r
36         Mon, 23 Sep 2013 12:53:04 -0700 (PDT)\r
37 Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31])\r
38         by mx.google.com with ESMTPSA id ey2sm720940wib.5.1969.12.31.16.00.00\r
39         (version=TLSv1.2 cipher=RC4-SHA bits=128/128);\r
40         Mon, 23 Sep 2013 12:53:03 -0700 (PDT)\r
41 From: Mark Walters <markwalters1009@gmail.com>\r
42 To: notmuch@notmuchmail.org\r
43 Subject: [PATCH 0/2] Move pick to use prefix-arg rather than Escape\r
44 Date: Mon, 23 Sep 2013 20:52:57 +0100\r
45 Message-Id: <1379965979-14752-1-git-send-email-markwalters1009@gmail.com>\r
46 X-Mailer: git-send-email 1.7.9.1\r
47 X-BeenThere: notmuch@notmuchmail.org\r
48 X-Mailman-Version: 2.1.13\r
49 Precedence: list\r
50 List-Id: "Use and development of the notmuch mail system."\r
51         <notmuch.notmuchmail.org>\r
52 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
54 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
55 List-Post: <mailto:notmuch@notmuchmail.org>\r
56 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
57 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
58         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
59 X-List-Received-Date: Mon, 23 Sep 2013 19:53:14 -0000\r
60 \r
61 To try and minimise the impact of pick on the code base some\r
62 keybindings which would naturally use a prefix argument were done as a\r
63 separate keybinding with "M-". (The reason is that a prefix argument\r
64 would have meant modifying the original function whereas the M- could\r
65 be bound to a new function in pick)\r
66 \r
67 The first patch is actually all inside pick anyway so can be\r
68 changed. The second patch removes a different occurence of the M-\r
69 keybinding temporarily: we can add back the prefix-arg version once\r
70 pick is in mainline.\r
71 \r
72 I also have some patches to add the prefix-argument (going to pick) to\r
73 hello buttons and other search entry points.  (I think this is a good\r
74 reason to make the change from M- to prefix-arg as it is much easier\r
75 to link the prefix-arg into button actions).\r
76 \r
77 Best wishes\r
78 \r
79 Mark\r
80 \r
81 Mark Walters (2):\r
82   contrib: pick: move M-RET to prefix-arg RET\r
83   contrib: pick: remove temporary keybinding\r
84 \r
85  contrib/notmuch-pick/notmuch-pick.el |   52 +++++++++++++---------------------\r
86  1 files changed, 20 insertions(+), 32 deletions(-)\r
87 \r
88 -- \r
89 1.7.9.1\r
90 \r