Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / ff / 23dedee3da2148da84111fb9809839f42b769d
1 Return-Path: <tomi.ollila@iki.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 5EAB3431FBC\r
6         for <notmuch@notmuchmail.org>; Wed,  5 Feb 2014 05:12:47 -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\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 I03tUQmW5WdW for <notmuch@notmuchmail.org>;\r
16         Wed,  5 Feb 2014 05:12:43 -0800 (PST)\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 A3C97431FAE\r
19         for <notmuch@notmuchmail.org>; Wed,  5 Feb 2014 05:12:43 -0800 (PST)\r
20 Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
21         by guru.guru-group.fi (Postfix) with ESMTP id 023F7100033;\r
22         Wed,  5 Feb 2014 15:12:34 +0200 (EET)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: Austin Clements <amdragon@MIT.EDU>, Jani Nikula <jani@nikula.org>\r
25 Subject: Re: [PATCH 0/5] lib: make folder: prefix literal\r
26 In-Reply-To: <20140204200249.GO4375@mit.edu>\r
27 References: <cover.1389304779.git.jani@nikula.org>\r
28         <87y525m649.fsf@awakening.csail.mit.edu>\r
29         <87r47wfltb.fsf@nikula.org> <87iot8f4vg.fsf@nikula.org>\r
30         <20140130220234.GI4375@mit.edu> <87fvo2yjc4.fsf@nikula.org>\r
31         <20140204200249.GO4375@mit.edu>\r
32 User-Agent: Notmuch/0.17+55~g4397960 (http://notmuchmail.org) Emacs/24.3.1\r
33         (x86_64-unknown-linux-gnu)\r
34 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
35         $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
36         !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
37 Date: Wed, 05 Feb 2014 15:12:34 +0200\r
38 Message-ID: <m2vbwtwvnh.fsf@guru.guru-group.fi>\r
39 MIME-Version: 1.0\r
40 Content-Type: text/plain\r
41 Cc: notmuch@notmuchmail.org\r
42 X-BeenThere: notmuch@notmuchmail.org\r
43 X-Mailman-Version: 2.1.13\r
44 Precedence: list\r
45 List-Id: "Use and development of the notmuch mail system."\r
46         <notmuch.notmuchmail.org>\r
47 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
49 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
50 List-Post: <mailto:notmuch@notmuchmail.org>\r
51 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
52 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
54 X-List-Received-Date: Wed, 05 Feb 2014 13:12:47 -0000\r
55 \r
56 On Tue, Feb 04 2014, Austin Clements <amdragon@MIT.EDU> wrote:\r
57 \r
58 > Quoth Jani Nikula on Feb 01 at  4:54 pm:\r
59 >\r
60 >> I kind of like the "/**" suffix for recursive, but there's two small\r
61 >> wrinkles: 1) it needs quoting on the command line (unlike my original\r
62 >> suggestion of just "/" suffix), and 2) what should the top level\r
63 >> recursive search be? path:"**" or path:"/**" or path:"./**"? I guess the\r
64 >> first one is most obvious?\r
65 >\r
66 > The shell quoting is annoying, but depending on the shell, it should\r
67 > at least give an error (zsh) or Just Work (apparently bash and sh pass\r
68 > the unexpanded glob through if it doesn't match anything?).\r
69 \r
70 \r
71 In zsh:\r
72 \r
73 $ echo whatever:/**\r
74 whatever:/**\r
75 \r
76 Quick check with:\r
77 ksh-20100621-12.el6.x86_64,\r
78 dash-0.5.5.1-3.1.el6.x86_64\r
79 busybox-1.15.1-20.el6.x86_64 (busybox sh & busybox ash)\r
80 and\r
81 http://sourceforge.net/projects/heirloom/files/heirloom-sh/050706/heirloom-sh-050706.tar.bz2/download\r
82 \r
83 all do the same (non-)expansion.\r
84 \r
85 \r
86 I vaguely remember some shells did puke some error when expansion yielded\r
87 no results... maybe some shell option does it. Definitely not mainstream\r
88 feature.\r
89 \r
90 Tomi\r