Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 64 / 741f261bbd6d58c13dfdc222e376fc733735bd
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 0017A431FBF\r
6         for <notmuch@notmuchmail.org>; Tue,  7 Feb 2012 09:26:18 -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 wv5TMkz1yeXT for <notmuch@notmuchmail.org>;\r
16         Tue,  7 Feb 2012 09:26:18 -0800 (PST)\r
17 Received: from mail-ww0-f41.google.com (mail-ww0-f41.google.com\r
18  [74.125.82.41])        (using TLSv1 with cipher RC4-SHA (128/128 bits))        (No client\r
19  certificate requested) by olra.theworths.org (Postfix) with ESMTPS id\r
20  4BAEB431FAE    for <notmuch@notmuchmail.org>; Tue,  7 Feb 2012 09:26:18 -0800\r
21  (PST)\r
22 Received: by wgbdt11 with SMTP id dt11so4495275wgb.2\r
23         for <notmuch@notmuchmail.org>; Tue, 07 Feb 2012 09:26:15 -0800 (PST)\r
24 MIME-Version: 1.0\r
25 Received: by 10.216.138.130 with SMTP id a2mr5514072wej.42.1328635575590;\r
26         Tue, 07 Feb 2012 09:26:15 -0800 (PST)\r
27 Received: from hotblack-desiato.hh.sledj.net\r
28         (host81-149-164-25.in-addr.btopenworld.com. [81.149.164.25])\r
29         by mx.google.com with ESMTPS id hb10sm5689817wib.10.2012.02.07.09.26.13\r
30         (version=TLSv1/SSLv3 cipher=OTHER);\r
31         Tue, 07 Feb 2012 09:26:14 -0800 (PST)\r
32 Received: by hotblack-desiato.hh.sledj.net (Postfix, from userid 30000)\r
33         id 31F7FA0F06; Tue,  7 Feb 2012 17:26:12 +0000 (GMT)\r
34 From: David Edmondson <dme@dme.org>\r
35 To: notmuch@notmuchmail.org\r
36 Subject: [PATCH] emacs: Ensure that gnupg output goes at the end of the\r
37  buffer.\r
38 Date: Tue,  7 Feb 2012 17:26:11 +0000\r
39 Message-Id: <1328635571-20622-1-git-send-email-dme@dme.org>\r
40 X-Mailer: git-send-email 1.7.8.3\r
41 X-Gm-Message-State:\r
42  ALoCoQmuscVKaZ1SMin70XEnqmQ9k9iDV3kt3y4XTrwXFPD/caT5VXZcehNlPJPSjCmk2tcf0z6W\r
43 X-BeenThere: notmuch@notmuchmail.org\r
44 X-Mailman-Version: 2.1.13\r
45 Precedence: list\r
46 List-Id: "Use and development of the notmuch mail system."\r
47         <notmuch.notmuchmail.org>\r
48 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
49         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
50 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
51 List-Post: <mailto:notmuch@notmuchmail.org>\r
52 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
53 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
55 X-List-Received-Date: Tue, 07 Feb 2012 17:26:19 -0000\r
56 \r
57 When showing the user some details of gnupg output, ensure that those\r
58 details are shown at the end of the gnupg status buffer\r
59 ("*notmuch-crypto-gpg-out*"), otherwise it can end up mixed up with\r
60 earlier output.\r
61 ---\r
62  emacs/notmuch-crypto.el |    2 ++\r
63  1 files changed, 2 insertions(+), 0 deletions(-)\r
64 \r
65 diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el\r
66 index 80ac350..c7ef1eb 100644\r
67 --- a/emacs/notmuch-crypto.el\r
68 +++ b/emacs/notmuch-crypto.el\r
69 @@ -129,6 +129,7 @@ mode."\r
70          (window (display-buffer buffer t nil)))\r
71      (with-selected-window window\r
72        (with-current-buffer buffer\r
73 +       (goto-char (point-max))\r
74         (call-process "gpg" nil t t "--list-keys" fingerprint))\r
75        (recenter -1))))\r
76  \r
77 @@ -139,6 +140,7 @@ mode."\r
78          (window (display-buffer buffer t nil)))\r
79      (with-selected-window window\r
80        (with-current-buffer buffer\r
81 +       (goto-char (point-max))\r
82         (call-process "gpg" nil t t "--recv-keys" keyid)\r
83         (insert "\n")\r
84         (call-process "gpg" nil t t "--list-keys" keyid))\r
85 -- \r
86 1.7.8.3\r
87 \r