From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4325 invoked from network); 4 Aug 1999 18:01:56 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 4 Aug 1999 18:01:56 -0000 Received: (qmail 20200 invoked by alias); 4 Aug 1999 18:01:48 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7357 Received: (qmail 20191 invoked from network); 4 Aug 1999 18:01:47 -0000 Date: Wed, 4 Aug 1999 19:01:36 +0100 (BST) From: "Owen M. Astley" X-Sender: oma1000@alpha3.poco.phy.cam.ac.uk To: zsh-workers@sunsite.auc.dk Subject: noglob and setting variables Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Is this a bug or a feature? In a directory with 32 files... alpha3-~% a=(*) alpha3-~% echo $#a 32 alpha3-~% noglob a=(*) zsh: command not found: a=(*) alpha3-~% noglob set -A a * alpha3-~% echo $#a 1 So assignment using '=' doesn't appear to be a command. What is it then? This is on zsh-3.0.5. Owen