From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21116 invoked from network); 23 Jun 2004 17:56:59 -0000 Received: from thor.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.86) by ns1.primenet.com.au with SMTP; 23 Jun 2004 17:56:59 -0000 Received: (qmail 21252 invoked from network); 23 Jun 2004 17:56:43 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 23 Jun 2004 17:56:43 -0000 Received: (qmail 8727 invoked by alias); 23 Jun 2004 17:56:35 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 20093 Received: (qmail 8717 invoked from network); 23 Jun 2004 17:56:34 -0000 Received: from thor.dotsrc.org (HELO a.mx.sunsite.dk) (qmailr@130.225.247.86) by sunsite.dk with SMTP; 23 Jun 2004 17:56:31 -0000 Received: (qmail 20914 invoked from network); 23 Jun 2004 17:56:31 -0000 Received: from acolyte.scowler.net (216.254.112.45) by a.mx.sunsite.dk with SMTP; 23 Jun 2004 17:56:30 -0000 Received: from localhost (localhost [127.0.0.1]) by acolyte.scowler.net (Postfix) with ESMTP id 487E37004E; Wed, 23 Jun 2004 13:56:02 -0400 (EDT) Received: from acolyte.scowler.net ([127.0.0.1]) by localhost (acolyte [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 20052-01-3; Wed, 23 Jun 2004 13:55:58 -0400 (EDT) Received: by acolyte.scowler.net (Postfix, from userid 1000) id 41DA070026; Wed, 23 Jun 2004 13:55:58 -0400 (EDT) Date: Wed, 23 Jun 2004 13:55:58 -0400 From: Clint Adams To: zsh-workers@sunsite.dk Cc: "Miciah D.B. Masters" , 255788-forwarded@bugs.debian.org Subject: Re: Bug#255788: $'' does not work after <<< Message-ID: <20040623175558.GA19981@scowler.net> References: <20040623023305.GA15259@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040623023305.GA15259@localhost> User-Agent: Mutt/1.5.6+20040523i X-Virus-Scanned: by amavisd-new-20030616-p7 (Debian) at scowler.net X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=-0.0 required=6.0 tests=BAYES_44 autolearn=no version=2.63 X-Spam-Hits: -0.0 Interesting that the x is disappearing. > Current behaviour (tested with zsh -f): > > % cat <<< $'x\ny' > \ny > > Desired behaviour: > > % cat <<< $'x\ny' > x > y > > BASH behaves in the latter manner, the ZSH User Guide shows > that behaviour, and I see no reason why $'' should not work > in the context of a here-string. > > Love, > > -- Miciah