Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / cb / ad3dda793e13e2df88e6be6f351eacac3c5aa9
1 Return-Path: <nex@nexoid.at>\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 C2D9E431FB6\r
6         for <notmuch@notmuchmail.org>; Tue,  4 Dec 2012 06:46:28 -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.001\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.001 tagged_above=-999 required=5\r
12         tests=[FREEMAIL_FROM=0.001] 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 bTYgwvP5n2FL for <notmuch@notmuchmail.org>;\r
16         Tue,  4 Dec 2012 06:46:27 -0800 (PST)\r
17 Received: from mail.nexoid.at (www.nexoid.at [178.79.130.240])\r
18         (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 61BE4431FAE\r
21         for <notmuch@notmuchmail.org>; Tue,  4 Dec 2012 06:46:27 -0800 (PST)\r
22 Received: by mail.nexoid.at (Postfix, from userid 1000)\r
23         id E8FF111C109; Tue,  4 Dec 2012 15:46:25 +0100 (CET)\r
24 From: Peter Feigl <craven@gmx.net>\r
25 To: notmuch@notmuchmail.org\r
26 Subject: [PATCH v2 0/5] New output format sexp (Lisp S-Expressions)\r
27 Date: Tue,  4 Dec 2012 15:46:17 +0100\r
28 Message-Id: <1354632382-15609-1-git-send-email-craven@gmx.net>\r
29 X-Mailer: git-send-email 1.8.0\r
30 In-Reply-To: <1354264143-30173-1-git-send-email-craven@gmx.net>\r
31 References: <1354264143-30173-1-git-send-email-craven@gmx.net>\r
32 X-BeenThere: notmuch@notmuchmail.org\r
33 X-Mailman-Version: 2.1.13\r
34 Precedence: list\r
35 List-Id: "Use and development of the notmuch mail system."\r
36         <notmuch.notmuchmail.org>\r
37 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
38         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
39 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
40 List-Post: <mailto:notmuch@notmuchmail.org>\r
41 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
42 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
43         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
44 X-List-Received-Date: Tue, 04 Dec 2012 14:46:28 -0000\r
45 \r
46 This patch series adds a new output format "sexp" to notmuch-reply,\r
47 notmuch-show and notmuch-search. These are useful for the Android mobile\r
48 client and perhaps other Lisp programs as well.\r
49 After the switch to a generic structured output printer, which was\r
50 committed some months ago, these patches just add another one (like the\r
51 json structured output printer).\r
52 Basic tests and updates to the man pages are also included.\r
53 \r
54 \r
55 Peter Feigl (5):\r
56   Adding an S-expression structured output printer.\r
57   Rename the -json printer functions in notmuch-reply and    \r
58     notmuch-show to generic -sprinter functions.\r
59   Use the S-Expression structured printer in notmuch-show,\r
60     notmuch-reply     and notmuch-search.\r
61   Adding tests for --format=sexp.\r
62   Updating man pages for new S-Expression output format.\r
63 \r
64  Makefile.local            |   1 +\r
65  man/man1/notmuch-reply.1  |  14 ++-\r
66  man/man1/notmuch-search.1 |  15 +--\r
67  man/man1/notmuch-show.1   |  36 +++++--\r
68  notmuch-client.h          |   8 +-\r
69  notmuch-reply.c           |  43 ++++----\r
70  notmuch-search.c          |   6 +-\r
71  notmuch-show.c            |  48 +++++----\r
72  sprinter-sexp.c           | 250 ++++++++++++++++++++++++++++++++++++++++++++++\r
73  sprinter.h                |   4 +\r
74  test/notmuch-test         |   1 +\r
75  test/sexp                 |  48 +++++++++\r
76  12 files changed, 414 insertions(+), 60 deletions(-)\r
77  create mode 100644 sprinter-sexp.c\r
78  create mode 100755 test/sexp\r
79 \r
80 -- \r
81 1.8.0\r
82 \r