From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24411 invoked by alias); 30 Sep 2012 07:46:18 -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: 17296 Received: (qmail 27467 invoked from network); 30 Sep 2012 07:46:15 -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: Sun, 30 Sep 2012 15:35:52 +0800 From: Han Pingtian To: zsh-users@zsh.org Subject: question of (C) and (s::) Message-ID: <20120930073552.GC7385@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-cbid: 12093007-7182-0000-0000-000002B74A75 Hi, I found in zsh 5.0, (C) will run after (s::): % x=foosbar;print ${(Cs:s:)x} Foo Bar But in rules of parameter expansion flags, "case mofification" is the 11th, "forced splitting" is the 16th, so I think we should get "Foo bar" as the result here. Right? Or I'm missing something here? Thanks in advance.