[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / a0 / 6723c9ab19882ad76a09d27c53c870cb8ea884
1 Return-Path: <jrollins@servo.finestructure.net>\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 584CF429E25\r
6         for <notmuch@notmuchmail.org>; Sat, 28 May 2011 17:10:11 -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: -1.921\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.921 tagged_above=-999 required=5\r
12         tests=[NO_DNS_FOR_FROM=0.379, RCVD_IN_DNSWL_MED=-2.3]\r
13         autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id 6vEvQdRc1osp for <notmuch@notmuchmail.org>;\r
17         Sat, 28 May 2011 17:10:11 -0700 (PDT)\r
18 Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
19         [131.215.239.19])\r
20         by olra.theworths.org (Postfix) with ESMTP id E009A431FB6\r
21         for <notmuch@notmuchmail.org>; Sat, 28 May 2011 17:10:10 -0700 (PDT)\r
22 Received: from earth-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
23         by earth-doxen-postvirus (Postfix) with ESMTP id 60F4B66E035F;\r
24         Sat, 28 May 2011 17:10:09 -0700 (PDT)\r
25 X-Spam-Scanned: at Caltech-IMSS on earth-doxen by amavisd-new\r
26 Received: from servo.finestructure.net (cpe-98-149-172-122.socal.res.rr.com\r
27         [98.149.172.122]) (Authenticated sender: jrollins)\r
28         by earth-doxen-submit (Postfix) with ESMTP id 6F2BC66E02C8;\r
29         Sat, 28 May 2011 17:10:02 -0700 (PDT)\r
30 Received: by servo.finestructure.net (Postfix, from userid 1000)\r
31         id 2E98F520; Sat, 28 May 2011 17:10:03 -0700 (PDT)\r
32 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
33 To: Notmuch Mail <notmuch@notmuchmail.org>\r
34 Subject: [PATCH 2/2] emacs: Unbind M-RET as display of thread with crypto\r
35         switch.\r
36 Date: Sat, 28 May 2011 17:09:44 -0700\r
37 Message-Id: <1306627784-3401-2-git-send-email-jrollins@finestructure.net>\r
38 X-Mailer: git-send-email 1.7.4.4\r
39 In-Reply-To: <1306627784-3401-1-git-send-email-jrollins@finestructure.net>\r
40 References: <1306627784-3401-1-git-send-email-jrollins@finestructure.net>\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: Sun, 29 May 2011 00:10:11 -0000\r
54 \r
55 Use prefix argument instead to set switch.\r
56 ---\r
57  emacs/notmuch.el |    7 +------\r
58  1 files changed, 1 insertions(+), 6 deletions(-)\r
59 \r
60 diff --git a/emacs/notmuch.el b/emacs/notmuch.el\r
61 index 3311fe8..0978c66 100644\r
62 --- a/emacs/notmuch.el\r
63 +++ b/emacs/notmuch.el\r
64 @@ -218,7 +218,6 @@ For a mouse binding, return nil."\r
65      (define-key map "-" 'notmuch-search-remove-tag)\r
66      (define-key map "+" 'notmuch-search-add-tag)\r
67      (define-key map (kbd "RET") 'notmuch-search-show-thread)\r
68 -    (define-key map (kbd "M-RET") 'notmuch-search-show-thread-crypto-switch)\r
69      map)\r
70    "Keymap for \"notmuch search\" buffers.")\r
71  (fset 'notmuch-search-mode-map notmuch-search-mode-map)\r
72 @@ -418,13 +417,9 @@ Complete list of currently available key bindings:\r
73    "Return a list of authors for the current region"\r
74    (notmuch-search-properties-in-region 'notmuch-search-subject beg end))\r
75  \r
76 -(defun notmuch-search-show-thread-crypto-switch ()\r
77 -  (interactive)\r
78 -  (notmuch-search-show-thread t))\r
79 -\r
80  (defun notmuch-search-show-thread (&optional crypto-switch)\r
81    "Display the currently selected thread."\r
82 -  (interactive)\r
83 +  (interactive "P")\r
84    (let ((thread-id (notmuch-search-find-thread-id))\r
85         (subject (notmuch-search-find-subject)))\r
86      (if (> (length thread-id) 0)\r
87 -- \r
88 1.7.4.4\r
89 \r