From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7287 invoked from network); 25 Sep 2003 07:38:16 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 25 Sep 2003 07:38:16 -0000 Received: (qmail 21756 invoked by alias); 25 Sep 2003 07:38:06 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 19138 Received: (qmail 21744 invoked from network); 25 Sep 2003 07:38:05 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 25 Sep 2003 07:38:05 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [192.54.253.222] by sunsite.dk (MessageWall 1.0.8) with SMTP; 25 Sep 2003 7:38:4 -0000 Received: by binome.blorf.net (Postfix, from userid 1000) id 8ADD29B127; Thu, 25 Sep 2003 00:38:03 -0700 (PDT) Date: Thu, 25 Sep 2003 00:38:03 -0700 From: Wayne Davison To: Bart Schaefer Cc: zsh-workers@sunsite.dk Subject: Re: Test Failures Message-ID: <20030925073803.GA4990@binome.blorf.net> References: <1030925040607.ZM5563@candle.brasslantern.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1030925040607.ZM5563@candle.brasslantern.com> User-Agent: Mutt/1.5.4i On Thu, Sep 25, 2003 at 04:06:07AM +0000, Bart Schaefer wrote: > In the first case, it appears that typset -T now rejects an assignment to > the scalar variable in the scalar+array pair, which previously was OK. Not quite: it might reject any typeset -T without the new separator arg. The reason is that it checks if argv[3] is non-NULL, which is not a valid thing to do if argv[2] is NULL. I just checked in a fix. ..wayne..