Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / df / 0ade0ae516d402f6ba468439fd43a0e6f8d203
1 Return-Path: <too@guru-group.fi>\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 180BB431FD0\r
6         for <notmuch@notmuchmail.org>; Mon,  1 Sep 2014 11:45:27 -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 DJHGThYbUFHy for <notmuch@notmuchmail.org>;\r
16         Mon,  1 Sep 2014 11:45:23 -0700 (PDT)\r
17 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
18         by olra.theworths.org (Postfix) with ESMTP id 91E03431FCB\r
19         for <notmuch@notmuchmail.org>; Mon,  1 Sep 2014 11:45:23 -0700 (PDT)\r
20 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
21         id 7CC9B10019E; Mon,  1 Sep 2014 21:45:06 +0300 (EEST)\r
22 From: Tomi Ollila <tomi.ollila@iki.fi>\r
23 To: notmuch@notmuchmail.org\r
24 Subject: [PATCH] doc: 'rm -f' potential doxygen temporary output file\r
25 Date: Mon,  1 Sep 2014 21:44:59 +0300\r
26 Message-Id: <1409597099-12432-1-git-send-email-tomi.ollila@iki.fi>\r
27 X-Mailer: git-send-email 2.0.0\r
28 Cc: tomi.ollila@iki.fi\r
29 X-BeenThere: notmuch@notmuchmail.org\r
30 X-Mailman-Version: 2.1.13\r
31 Precedence: list\r
32 List-Id: "Use and development of the notmuch mail system."\r
33         <notmuch.notmuchmail.org>\r
34 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
35         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
36 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
37 List-Post: <mailto:notmuch@notmuchmail.org>\r
38 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
39 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
40         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
41 X-List-Received-Date: Mon, 01 Sep 2014 18:45:27 -0000\r
42 \r
43 Some (older) Doxygen versions do not create such a temporary file.\r
44 \r
45 ---\r
46 \r
47 I was crafting somewhat larger patch where doxygen outputs to _build/.wip...\r
48 and then the final would be sed(1)'d to the target. But as that would not\r
49 be the ultimate solution (i.e. sed(1) to yet another intermediate and mv(1)\r
50 that to the target -- for it to be atomic -- and we don't do that elsewhere,\r
51 either) I dropped that for this simpler alternative.\r
52 \r
53  doc/Makefile.local | 2 +-\r
54  1 file changed, 1 insertion(+), 1 deletion(-)\r
55 \r
56 diff --git a/doc/Makefile.local b/doc/Makefile.local\r
57 index 0887413997e6..e7d0bac8f3fb 100644\r
58 --- a/doc/Makefile.local\r
59 +++ b/doc/Makefile.local\r
60 @@ -70,7 +70,7 @@ install-apidocs: apidocs\r
61  $(APIMAN): $(dir)/config.dox $(srcdir)/$(dir)/doxygen.cfg $(srcdir)/lib/notmuch.h\r
62         mkdir -p $(DOCBUILDDIR)/man/man3\r
63         doxygen $(DOXYFILE)\r
64 -       rm $(DOCBUILDDIR)/man/man3/_*.3\r
65 +       rm -f $(DOCBUILDDIR)/man/man3/_*.3\r
66         perl -pi -e 's/^[.]RI "\\fI/.RI "\\fP/' $(APIMAN)\r
67  else\r
68  apidocs:\r
69 -- \r
70 2.0.0\r
71 \r