Re: [PATCH 9/9] add has: query prefix to search for specific properties
[notmuch-archives.git] / de / 6c0d0f44a348a8c318ff795967dfb1e541d1fd
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 arlo.cworth.org (Postfix) with ESMTP id 9F5FA6DE01C2\r
6  for <notmuch@notmuchmail.org>; Thu,  9 Jun 2016 12:35:39 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0.241\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.241 tagged_above=-999 required=5 tests=[AWL=0.250, \r
12  HEADER_FROM_DIFFERENT_DOMAINS=0.001, T_RP_MATCHES_RCVD=-0.01]\r
13  autolearn=disabled\r
14 Received: from arlo.cworth.org ([127.0.0.1])\r
15  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
16  with ESMTP id LlgtRJ5M5yLS for <notmuch@notmuchmail.org>;\r
17  Thu,  9 Jun 2016 12:35:32 -0700 (PDT)\r
18 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
19  by arlo.cworth.org (Postfix) with ESMTP id BC8566DE01BE\r
20  for <notmuch@notmuchmail.org>; Thu,  9 Jun 2016 12:35:31 -0700 (PDT)\r
21 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
22  id 84EDC1001E5; Thu,  9 Jun 2016 22:35:13 +0300 (EEST)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: notmuch@notmuchmail.org\r
25 Cc: tomi.ollila@iki.fi\r
26 Subject: [PATCH] devel/man-to-mdwn.pl: portable locale environment variable\r
27  setting\r
28 Date: Thu,  9 Jun 2016 22:35:12 +0300\r
29 Message-Id: <1465500912-25678-1-git-send-email-tomi.ollila@iki.fi>\r
30 X-Mailer: git-send-email 2.8.2\r
31 X-BeenThere: notmuch@notmuchmail.org\r
32 X-Mailman-Version: 2.1.20\r
33 Precedence: list\r
34 List-Id: "Use and development of the notmuch mail system."\r
35  <notmuch.notmuchmail.org>\r
36 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
37  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
38 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
39 List-Post: <mailto:notmuch@notmuchmail.org>\r
40 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
41 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
42  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
43 X-List-Received-Date: Thu, 09 Jun 2016 19:35:39 -0000\r
44 \r
45 Setting locale environment variables (LC_* and LANG) to e.g.\r
46 en_US.utf8 works fine on Linux, and that is what locale -a\r
47 returns (in Linux). However this does not work e.g. in some *BSD\r
48 systems.\r
49 In these systems, en_US.UTF-8 works. This also works in Linux\r
50 systems (which may look like a surprising thing on the first sight(*)).\r
51 But that *UTF-8 format seems to be widely used in the Linux system:\r
52 Grep it through the files in /etc/, for example.\r
53 \r
54 Easy way to test: Run the following command lines. First should\r
55 complain about setting locale failed, and second should not.\r
56 \r
57 $ LC_ALL=en_US.UTF-1 perl -e ''\r
58 $ LC_ALL=en_US.UTF-8 perl -e ''\r
59 \r
60 (*) and who knows what the "standard" is...\r
61 ---\r
62  devel/man-to-mdwn.pl | 2 +-\r
63  1 file changed, 1 insertion(+), 1 deletion(-)\r
64 \r
65 diff --git a/devel/man-to-mdwn.pl b/devel/man-to-mdwn.pl\r
66 index f9d31b73a237..a3c40695c4ea 100755\r
67 --- a/devel/man-to-mdwn.pl\r
68 +++ b/devel/man-to-mdwn.pl\r
69 @@ -66,7 +66,7 @@ while (my ($k, $v) = each %fhash)\r
70  \r
71      my @lines;\r
72      open I, '-|', qw/env -i/, "PATH=$ENV{PATH}",\r
73 -       qw/TERM=vt100 LANG=en_US.utf8 LC_ALL=en_US.utf8/,\r
74 +       qw/TERM=vt100 LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8/,\r
75         qw/GROFF_NO_SGR=1 MAN_KEEP_FORMATTING=1 MANWIDTH=80/,\r
76         qw/man/, $v or die "$!";\r
77      binmode I, ':utf8';\r
78 -- \r
79 2.8.2\r
80 \r