From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29393 invoked from network); 22 Feb 2001 18:55:00 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 22 Feb 2001 18:55:00 -0000 Received: (qmail 28326 invoked by alias); 22 Feb 2001 18:54:54 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 13525 Received: (qmail 28314 invoked from network); 22 Feb 2001 18:54:53 -0000 Message-Id: <200102220421.UAA07565@scv1.apple.com> Date: Wed, 21 Feb 2001 20:21:14 -0800 Content-Type: text/plain; format=flowed; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v384) From: Matt Watson To: zsh-workers@sunsite.auc.dk X-Mailer: Apple Mail (2.384) Content-Transfer-Encoding: 7bit Subject: Re: zsh appears to be eating characters when called with -c Okay, this appears to be caused by the Meta character being interpreted. This portion of the command string: 0x83aa 0xe383 0xbce3 0x82b9 0xe382 0x9920 gets munged into: 0x8ae3 0x9ce3 0x82b9 0xe382 20 So, the 0x83aa gets turned into 0xaa ^ 32 (0x8a), the 0x83bc gets turned into 0x9c, and the 0x99 (Dnull) is summarily dispatched. matt.