From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18565 invoked from network); 11 Jan 1998 18:30:49 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 11 Jan 1998 18:30:49 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id NAA29285; Sun, 11 Jan 1998 13:15:13 -0500 (EST) Resent-Date: Sun, 11 Jan 1998 13:14:39 -0500 (EST) Message-ID: <19980111181603.60292@thelonious.new.ox.ac.uk> Date: Sun, 11 Jan 1998 18:16:03 +0000 From: Adam Spiers To: zsh users mailing list Subject: Exporting arrays Reply-To: Adam Spiers Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.84 Resent-Message-ID: <"FyOl8.0.A97.FmGkq"@math> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/1216 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu % foo=(a b c) % typeset | grep zzz array foo=(a b c) % export foo=(a b c) % typeset | grep zzz array exported foo=(a b c) However, % unset foo % export foo=(a b c) % typeset | grep zzz exported foo='(a b c)' Presumably there's a decent reason for this behaviour; would someone be good enough to explain it to me?