[PATCH 2/4] emacs: add function notmuch-address--message-insinuated
[notmuch-archives.git] / 4c / ad770e191d995718d2c49906a7cb19bea084c5
1 Return-Path: <jan@ryngle.com>\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 183DB431FBC\r
6         for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 04:44:49 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 Received: from olra.theworths.org ([127.0.0.1])\r
9         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
10         with ESMTP id c5uz5hd-Tqr9 for <notmuch@notmuchmail.org>;\r
11         Sun, 22 Nov 2009 04:44:48 -0800 (PST)\r
12 Received: from mail-fx0-f214.google.com (mail-fx0-f214.google.com\r
13         [209.85.220.214])\r
14         by olra.theworths.org (Postfix) with ESMTP id 5BECD431FAE\r
15         for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 04:44:48 -0800 (PST)\r
16 Received: by fxm6 with SMTP id 6so5036814fxm.0\r
17         for <notmuch@notmuchmail.org>; Sun, 22 Nov 2009 04:44:47 -0800 (PST)\r
18 Received: by 10.103.84.32 with SMTP id m32mr1630932mul.33.1258893887497;\r
19         Sun, 22 Nov 2009 04:44:47 -0800 (PST)\r
20 Received: from x61s.janakj (r2c34.net.upc.cz [62.245.66.34])\r
21         by mx.google.com with ESMTPS id y37sm12690462mug.47.2009.11.22.04.44.46\r
22         (version=TLSv1/SSLv3 cipher=RC4-MD5);\r
23         Sun, 22 Nov 2009 04:44:46 -0800 (PST)\r
24 Received: by x61s.janakj (Postfix, from userid 1000)\r
25         id 82A99440651; Sun, 22 Nov 2009 13:44:37 +0100 (CET)\r
26 From: Jan Janak <jan@ryngle.com>\r
27 To: notmuch@notmuchmail.org\r
28 Date: Sun, 22 Nov 2009 13:44:37 +0100\r
29 Message-Id: <1258893877-28436-1-git-send-email-jan@ryngle.com>\r
30 X-Mailer: git-send-email 1.6.3.3\r
31 Subject: [notmuch] [PATCH] makefile: Tell echo to interpret escape sequences.\r
32 X-BeenThere: notmuch@notmuchmail.org\r
33 X-Mailman-Version: 2.1.12\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: Sun, 22 Nov 2009 12:44:49 -0000\r
45 \r
46 The initial message that informs the user about the possibility to use\r
47 make V=1 contains a \n at the end, but echo wouldn't interpret that\r
48 properly without the -e command line option.\r
49 ---\r
50  Makefile |    2 +-\r
51  1 files changed, 1 insertions(+), 1 deletions(-)\r
52 \r
53 diff --git a/Makefile b/Makefile\r
54 index ae8bff1..3553ff4 100644\r
55 --- a/Makefile\r
56 +++ b/Makefile\r
57 @@ -41,7 +41,7 @@ include Makefile.config\r
58  # user how to enable verbose compiles.\r
59  ifeq ($(V),)\r
60  quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"\r
61 -quiet = @echo $(quiet_DOC)$(eval quiet_DOC:=)"  $1     $@"; $($1)\r
62 +quiet = @echo -e $(quiet_DOC)$(eval quiet_DOC:=)"  $1  $@"; $($1)\r
63  endif\r
64  # The user has explicitly enabled quiet compilation.\r
65  ifeq ($(V),0)\r
66 -- \r
67 1.6.3.3\r
68 \r