Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / f8 / 44c437c1b12269c010127ac78860a1008d7917
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 C516F431FBD\r
6         for <notmuch@notmuchmail.org>; Thu,  6 Dec 2012 03:45:17 -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 ORr-KBZto0Ny for <notmuch@notmuchmail.org>;\r
16         Thu,  6 Dec 2012 03:45:17 -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 36EAF431FB6\r
21         for <notmuch@notmuchmail.org>; Thu,  6 Dec 2012 03:45:17 -0800 (PST)\r
22 Received: by mail.nexoid.at (Postfix, from userid 1000)\r
23         id 3D2A411C109; Thu,  6 Dec 2012 12:45:14 +0100 (CET)\r
24 From: Peter Feigl <craven@gmx.net>\r
25 To: notmuch@notmuchmail.org\r
26 Subject: [PATCH v4 0/5] New output format sexp (Lisp S-Expressions)\r
27 Date: Thu,  6 Dec 2012 12:44:54 +0100\r
28 Message-Id: <cover.1354794428.git.craven@gmx.net>\r
29 X-Mailer: git-send-email 1.8.0\r
30 X-BeenThere: notmuch@notmuchmail.org\r
31 X-Mailman-Version: 2.1.13\r
32 Precedence: list\r
33 List-Id: "Use and development of the notmuch mail system."\r
34         <notmuch.notmuchmail.org>\r
35 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
36         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
37 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
38 List-Post: <mailto:notmuch@notmuchmail.org>\r
39 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
40 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
42 X-List-Received-Date: Thu, 06 Dec 2012 11:45:18 -0000\r
43 \r
44 This patch series adds a new output format "sexp" to notmuch-reply,\r
45 notmuch-show and notmuch-search. These are useful for the Android mobile\r
46 client, Emacs and perhaps other Lisp programs as well.\r
47 After the switch to a generic structured output printer, which was\r
48 committed some months ago, these patches just add another one (like the\r
49 json structured output printer).\r
50 Basic tests and updates to the man pages are also included.\r
51 \r
52 This version adresses comments by Mark Walters.\r
53 \r
54 Old versions:\r
55 v3: id:1354779189-12231-1-git-send-email-craven@gmx.net\r
56 v2: id:1354632382-15609-1-git-send-email-craven@gmx.net\r
57 v1: 1354264143-30173-1-git-send-email-craven@gmx.net\r
58 \r
59 Peter Feigl (5):\r
60   Adding an S-expression structured output printer.\r
61   Rename the -json printer functions in notmuch-reply and notmuch-show\r
62     to     generic -sprinter functions.\r
63   Use the S-Expression structured printer in notmuch-show,\r
64     notmuch-reply     and notmuch-search.\r
65   Adding tests for --format=sexp.\r
66   Updating man pages for new S-Expression output format.\r
67 \r
68  Makefile.local            |   1 +\r
69  devel/schemata            |   8 +-\r
70  man/man1/notmuch-reply.1  |  14 ++-\r
71  man/man1/notmuch-search.1 |  15 +--\r
72  man/man1/notmuch-show.1   |  36 +++++--\r
73  notmuch-client.h          |   8 +-\r
74  notmuch-reply.c           |  48 ++++++----\r
75  notmuch-search.c          |   6 +-\r
76  notmuch-show.c            |  65 +++++++------\r
77  sprinter-sexp.c           | 238 ++++++++++++++++++++++++++++++++++++++++++++++\r
78  sprinter.h                |   4 +\r
79  test/notmuch-test         |   1 +\r
80  test/sexp                 |  48 ++++++++++\r
81  13 files changed, 423 insertions(+), 69 deletions(-)\r
82  create mode 100644 sprinter-sexp.c\r
83  create mode 100755 test/sexp\r
84 \r
85 -- \r
86 1.8.0\r
87 \r