Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 71 / 485ef86295bc97d084b9201c8e6c1226ac2197
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 5878E429E21\r
6         for <notmuch@notmuchmail.org>; Mon, 23 Jan 2012 09:39:43 -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.29\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-2.29 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3, T_MIME_NO_TEXT=0.01] 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 9rK6hClSpqzS for <notmuch@notmuchmail.org>;\r
16         Mon, 23 Jan 2012 09:39:42 -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 B58CC429E54\r
20         for <notmuch@notmuchmail.org>; Mon, 23 Jan 2012 09:39:42 -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 3532A66E0141;\r
23         Mon, 23 Jan 2012 09:39:40 -0800 (PST)\r
24 X-Spam-Scanned: at Caltech-IMSS on earth-doxen by amavisd-new\r
25 Received: from finestructure.net (cpe-76-174-137-84.socal.res.rr.com\r
26         [76.174.137.84]) (Authenticated sender: jrollins)\r
27         by earth-doxen-submit (Postfix) with ESMTP id 5581466E0135;\r
28         Mon, 23 Jan 2012 09:39:36 -0800 (PST)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id 9699634F; Mon, 23 Jan 2012 09:39:36 -0800 (PST)\r
31 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
32 To: David Edmondson <dme@dme.org>, Notmuch Mail <notmuch@notmuchmail.org>\r
33 Subject: Re: [PATCH 4/6] emacs: add option to notmuch-show-next-open-message\r
34         to pop out to parent buffer if at end\r
35 In-Reply-To: <cunfwf64r83.fsf@hotblack-desiato.hh.sledj.net>\r
36 References: <87pqea24z0.fsf@servo.finestructure.net>\r
37         <1327307665-23387-1-git-send-email-jrollins@finestructure.net>\r
38         <1327307665-23387-2-git-send-email-jrollins@finestructure.net>\r
39         <1327307665-23387-3-git-send-email-jrollins@finestructure.net>\r
40         <1327307665-23387-4-git-send-email-jrollins@finestructure.net>\r
41         <cunfwf64r83.fsf@hotblack-desiato.hh.sledj.net>\r
42 User-Agent: Notmuch/0.11+102~g958863a (http://notmuchmail.org) Emacs/23.3.1\r
43         (x86_64-pc-linux-gnu)\r
44 Date: Mon, 23 Jan 2012 09:39:30 -0800\r
45 Message-ID: <87d3aa1fot.fsf@servo.finestructure.net>\r
46 MIME-Version: 1.0\r
47 Content-Type: multipart/signed; boundary="=-=-=";\r
48         micalg=pgp-sha256; protocol="application/pgp-signature"\r
49 X-BeenThere: notmuch@notmuchmail.org\r
50 X-Mailman-Version: 2.1.13\r
51 Precedence: list\r
52 List-Id: "Use and development of the notmuch mail system."\r
53         <notmuch.notmuchmail.org>\r
54 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
55         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
56 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
57 List-Post: <mailto:notmuch@notmuchmail.org>\r
58 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
59 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
60         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
61 X-List-Received-Date: Mon, 23 Jan 2012 17:39:43 -0000\r
62 \r
63 --=-=-=\r
64 Content-Transfer-Encoding: quoted-printable\r
65 \r
66 On Mon, 23 Jan 2012 11:02:04 +0000, David Edmondson <dme@dme.org> wrote:\r
67 > On Mon, 23 Jan 2012 00:34:23 -0800, Jameson Graef Rollins <jrollins@fines=\r
68 tructure.net> wrote:\r
69 > > -(defun notmuch-show-next-open-message ()\r
70 > > +(defun notmuch-show-next-open-message (&optional pop-at-end)\r
71 > >    "Show the next message."\r
72 > > -  (interactive)\r
73 > > -  (let (r)\r
74 > > +  (interactive "P")\r
75 > > +  (let ((parent-buffer notmuch-show-parent-buffer)\r
76 > > +   (r))\r
77 >=20\r
78 > Extra brackets around 'r' are unnecessary. Otherwise, +1.\r
79 \r
80 This seems minor enough that I'm not going to resend, but noted for next\r
81 time.  Thanks.\r
82 \r
83 jamie.\r
84 \r
85 --=-=-=\r
86 Content-Type: application/pgp-signature\r
87 \r
88 -----BEGIN PGP SIGNATURE-----\r
89 Version: GnuPG v1.4.11 (GNU/Linux)\r
90 \r
91 iQIcBAEBCAAGBQJPHZtSAAoJEO00zqvie6q8h2UQAKcQ2TVt08zZB7Cjl0tDLShU\r
92 Md0TN+vB+iw5jVnqdgHl2CTmbHSN3Jgr7x1xHMu/bHb/HPtYzBamCkwBY6drr1bu\r
93 Plfj36n7iNKSKJP98SM8iED0yZIbmVo52i9NG4n9Fc29gR+Zm9C8hfI0SpH4NtLH\r
94 ZJ+IZw7qHCEg5RANsPloSrVe88dvaF12U7+Yo6OQ54M2G0lE3EjvSdzPN3NvL3UY\r
95 N/0ucd/bsn6qyB21+3FCSA7KEV7YplgMnYdTZV8tT3jADHiqFZVShUEX0XVMlhWR\r
96 /IHbS1kKD5g87+KNQZO2hzBN53DJIz3eVbwbOmfPHGVEG3bNaJhoaTzGWx3UMWPQ\r
97 vks6LsZ9st1xJsMqabXvj41Cn7RCrb2zIwCTrJjM40BBwYkTFlWEY9JomeV3zPGn\r
98 XBtZaMROyin7CI+gWrC4b3/nt/1KE8SSfgf5AdsxB9iobvVCBegiexYUdu1e7b+2\r
99 AOIxf5AyyNaRkiTNPbtT9HdCs/Mu0pdM1AlA0BOc5krH63q6InUOVUj9cDM/3mTo\r
100 2chqYbQqrPJy7E91w9yaLj7YDQU4sK+Iq86h3Hv1buSMTIWnI+gaLmoGS4PNJQxN\r
101 A10pAUUx8IftVPSPmCITsvLOZojQRCuqCiJQpl0UuY95szTcr8U3XP5yDOuaDZY6\r
102 xE9f8YbwGD/e3IgyQ27H\r
103 =brTb\r
104 -----END PGP SIGNATURE-----\r
105 --=-=-=--\r