Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / f6 / 1e0358918f3bb799f7516ea7a99fbf78c06d4d
1 Return-Path: <jrollins@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 F3D37431FBC\r
6         for <notmuch@notmuchmail.org>; Tue, 24 Jan 2012 16:06:30 -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.3\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3] 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 t+djXIARAtW8 for <notmuch@notmuchmail.org>;\r
16         Tue, 24 Jan 2012 16:06:30 -0800 (PST)\r
17 Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
18         [131.215.239.19])\r
19         by olra.theworths.org (Postfix) with ESMTP id 0E001431FB6\r
20         for <notmuch@notmuchmail.org>; Tue, 24 Jan 2012 16:06:30 -0800 (PST)\r
21 Received: from earth-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
22         by earth-doxen-postvirus (Postfix) with ESMTP id A33D066E014B\r
23         for <notmuch@notmuchmail.org>; Tue, 24 Jan 2012 16:06:29 -0800 (PST)\r
24 X-Spam-Scanned: at Caltech-IMSS on earth-doxen by amavisd-new\r
25 Received: from finestructure.net (DHCP-123-180.caltech.edu [131.215.123.180])\r
26         (Authenticated sender: jrollins)\r
27         by earth-doxen-submit (Postfix) with ESMTP id D9ED366E016E\r
28         for <notmuch@notmuchmail.org>; Tue, 24 Jan 2012 16:06:27 -0800 (PST)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id CF7A413C; Tue, 24 Jan 2012 16:06:27 -0800 (PST)\r
31 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
32 To: Notmuch Mail <notmuch@notmuchmail.org>\r
33 Subject: [PATCH v3 1/8] emacs: use search-next-thread to move to next thread\r
34         in show mode\r
35 Date: Tue, 24 Jan 2012 16:06:16 -0800\r
36 Message-Id: <1327449983-23638-2-git-send-email-jrollins@finestructure.net>\r
37 X-Mailer: git-send-email 1.7.8.3\r
38 In-Reply-To: <1327449983-23638-1-git-send-email-jrollins@finestructure.net>\r
39 References: <87pqea24z0.fsf@servo.finestructure.net>\r
40         <1327449983-23638-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: Wed, 25 Jan 2012 00:06:31 -0000\r
54 \r
55 We should always use the dedicated search mode navigation functions,\r
56 in case navigation mechanics change down the line.\r
57 ---\r
58  emacs/notmuch-show.el |    3 ++-\r
59  1 files changed, 2 insertions(+), 1 deletions(-)\r
60 \r
61 diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el\r
62 index e6a5b31..a0045fc 100644\r
63 --- a/emacs/notmuch-show.el\r
64 +++ b/emacs/notmuch-show.el\r
65 @@ -39,6 +39,7 @@\r
66  (declare-function notmuch-call-notmuch-process "notmuch" (&rest args))\r
67  (declare-function notmuch-fontify-headers "notmuch" nil)\r
68  (declare-function notmuch-select-tag-with-completion "notmuch" (prompt &rest search-terms))\r
69 +(declare-function notmuch-search-next-thread "notmuch" nil)\r
70  (declare-function notmuch-search-show-thread "notmuch" nil)\r
71  \r
72  (defcustom notmuch-message-headers '("Subject" "To" "Cc" "Date")\r
73 @@ -1535,7 +1536,7 @@ argument, hide all of the messages."\r
74      (if parent-buffer\r
75         (progn\r
76           (switch-to-buffer parent-buffer)\r
77 -         (forward-line)\r
78 +         (notmuch-search-next-thread)\r
79           (if show-next\r
80               (notmuch-search-show-thread))))))\r
81  \r
82 -- \r
83 1.7.8.3\r
84 \r