From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16187 invoked from network); 18 Nov 2008 15:24:35 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 18 Nov 2008 15:24:35 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 65844 invoked from network); 18 Nov 2008 15:24:28 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 18 Nov 2008 15:24:28 -0000 Received: (qmail 18642 invoked by alias); 18 Nov 2008 15:24:23 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26064 Received: (qmail 18626 invoked from network); 18 Nov 2008 15:24:22 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 18 Nov 2008 15:24:22 -0000 Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by bifrost.dotsrc.org (Postfix) with ESMTP id ECD8F80524C4 for ; Tue, 18 Nov 2008 16:24:17 +0100 (CET) Received: from torch.brasslantern.com ([96.238.220.215]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTPA id <0KAJ002AAC4BV8B4@vms042.mailsrvcs.net> for zsh-workers@sunsite.dk; Tue, 18 Nov 2008 09:24:12 -0600 (CST) Received: from torch.brasslantern.com (localhost.localdomain [127.0.0.1]) by torch.brasslantern.com (8.13.1/8.13.1) with ESMTP id mAIFOAUK008573 for ; Tue, 18 Nov 2008 07:24:11 -0800 Received: (from schaefer@localhost) by torch.brasslantern.com (8.13.1/8.13.1/Submit) id mAIFOA2C008572 for zsh-workers@sunsite.dk; Tue, 18 Nov 2008 07:24:10 -0800 Date: Tue, 18 Nov 2008 07:24:10 -0800 From: Bart Schaefer Subject: Re: PATCH: bad clash between process substitution and numeric glob In-reply-to: <16038.1227002393@csr.com> To: zsh-workers@sunsite.dk (Zsh hackers list) Message-id: <081118072410.ZM8571@torch.brasslantern.com> MIME-version: 1.0 X-Mailer: OpenZMail Classic (0.9.2 24April2005) Content-type: text/plain; charset=us-ascii References: <16038.1227002393@csr.com> Comments: In reply to Peter Stephenson "PATCH: bad clash between process substitution and numeric glob" (Nov 18, 9:59am) X-Virus-Scanned: ClamAV 0.92.1/8646/Tue Nov 18 14:31:51 2008 on bifrost X-Virus-Status: Clean On Nov 18, 9:59am, Peter Stephenson wrote: } Subject: PATCH: bad clash between process substitution and numeric glob } } /**/ } -mod_export char ztokens[] = "#$^*()$=|{}[]`<>?~`,'\"\\\\"; } +mod_export char ztokens[] = "#$^*()$=|{}[]`<>>?~`,'\"\\\\"; Correct me if I'm wrong, but this is going to break zcompiled scripts that were created with earlier versions of the shell. Not that you need to avoid that, but it might be worth explicitly calling out if true, and also bump the ZSH_VERSION number so it's detectable at run time. Or you could just put OutangProc at the end rather than renumbering any of the existing tokens (I think). Again I may be misguided.