From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8742 invoked by alias); 27 Sep 2012 02:53:09 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 17291 Received: (qmail 3159 invoked from network); 27 Sep 2012 02:52:58 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at linux.vnet.ibm.com does not designate permitted sender hosts) Date: Thu, 27 Sep 2012 10:42:36 +0800 From: Han Pingtian To: zsh-users@zsh.org Subject: splitting in assignment forms of expansion Message-ID: <20120927024236.GA7385@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-Content-Scanned: Fidelis XPS MAILER x-cbid: 12092702-7408-0000-0000-000008D52261 Hello, The manpage of zshexpn states about "${=...}": Note that splitting is applied to word in the assignment forms of spec before the assignment to name is performed. This affects the result of array assignments with the A flag. but looks like the splitting isn't applied to word first: % print -l ${=xx::=foo bar} foo bar % print -l $xx foo bar % I'm confused on this. Please help. Thanks.