Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 61 / ce8120ee3827c8a1f317c6f3d0b234e4fbabfe
1 Return-Path: <teythoon@jade-hamburg.de>\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 0884E431FD0\r
6         for <notmuch@notmuchmail.org>; Sun, 25 Sep 2011 18:06:10 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         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 o6FDcTaoIBUf for <notmuch@notmuchmail.org>;\r
16         Sun, 25 Sep 2011 18:06:09 -0700 (PDT)\r
17 Received: from mail.cryptobitch.de (cryptobitch.de [88.198.7.68])\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 6F861431FB6\r
21         for <notmuch@notmuchmail.org>; Sun, 25 Sep 2011 18:06:09 -0700 (PDT)\r
22 Received: from mail.jade-hamburg.de (unknown [85.183.11.228])\r
23         (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
24         (No client certificate requested)\r
25         by mail.cryptobitch.de (Postfix) with ESMTPSA id 81527505B24\r
26         for <notmuch@notmuchmail.org>; Mon, 26 Sep 2011 03:06:06 +0200 (CEST)\r
27 Received: by mail.jade-hamburg.de (Postfix, from userid 401)\r
28         id E57CDDF2A1; Mon, 26 Sep 2011 03:06:05 +0200 (CEST)\r
29 Received: from thinkbox.jade-hamburg.de (unknown [10.1.1.109])\r
30         (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
31         (No client certificate requested) (Authenticated sender: teythoon)\r
32         by mail.jade-hamburg.de (Postfix) with ESMTPSA id 275C2DF28B;\r
33         Mon, 26 Sep 2011 03:06:00 +0200 (CEST)\r
34 Received: from teythoon by thinkbox.jade-hamburg.de with local (Exim 4.76)\r
35         (envelope-from <teythoon@thinkbox.jade-hamburg.de>)\r
36         id 1R7zdv-0007O4-SQ; Mon, 26 Sep 2011 03:05:59 +0200\r
37 From: Justus Winter <4winter@informatik.uni-hamburg.de>\r
38 To: notmuch@notmuchmail.org\r
39 Subject: [PATCH 1/9] python: add a .gitignore file and refine the toplevel one\r
40 Date: Mon, 26 Sep 2011 03:05:29 +0200\r
41 Message-Id:\r
42  <1316999137-28257-1-git-send-email-4winter@informatik.uni-hamburg.de>\r
43 X-Mailer: git-send-email 1.7.6.3\r
44 X-Mailman-Approved-At: Mon, 26 Sep 2011 09:17:56 -0700\r
45 Cc: Justus Winter <4winter@informatik.uni-hamburg.de>\r
46 X-BeenThere: notmuch@notmuchmail.org\r
47 X-Mailman-Version: 2.1.13\r
48 Precedence: list\r
49 List-Id: "Use and development of the notmuch mail system."\r
50         <notmuch.notmuchmail.org>\r
51 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
53 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
54 List-Post: <mailto:notmuch@notmuchmail.org>\r
55 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
56 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
57         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
58 X-List-Received-Date: Mon, 26 Sep 2011 01:06:10 -0000\r
59 \r
60 The line 'notmuch' in the toplevel .gitignore file is to broad\r
61 and matches bindings/python/notmuch making it cumbersome to\r
62 git-add files within that directory.\r
63 \r
64 Refine the toplevel file to only match the generated notmuch\r
65 executable and add a more specialized .gitignore file to the\r
66 python directory.\r
67 \r
68 Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>\r
69 ---\r
70  .gitignore                 |    2 +-\r
71  bindings/python/.gitignore |    2 ++\r
72  2 files changed, 3 insertions(+), 1 deletions(-)\r
73  create mode 100644 bindings/python/.gitignore\r
74 \r
75 diff --git a/.gitignore b/.gitignore\r
76 index 02ab004..9468e30 100644\r
77 --- a/.gitignore\r
78 +++ b/.gitignore\r
79 @@ -4,7 +4,7 @@ TAGS\r
80  tags\r
81  *cscope*\r
82  .deps\r
83 -notmuch\r
84 +/notmuch\r
85  notmuch.sym\r
86  notmuch-shared\r
87  notmuch.1.gz\r
88 diff --git a/bindings/python/.gitignore b/bindings/python/.gitignore\r
89 new file mode 100644\r
90 index 0000000..82e4918\r
91 --- /dev/null\r
92 +++ b/bindings/python/.gitignore\r
93 @@ -0,0 +1,2 @@\r
94 +*.py[co]\r
95 +/build\r
96 -- \r
97 1.7.6.3\r
98 \r