From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7821 invoked by alias); 21 Jul 2013 09:45:41 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 31550 Received: (qmail 4572 invoked from network); 21 Jul 2013 09:45:34 -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=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.212.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=6EaqUj48OxRPIDkSh38bIk1UUselJNAyZkmCENpUg/4=; b=gLEyM49nqcOqKKsIioCA5QMNOmMiOdtmb8YjsbkYKEi+yGaypjVfPMxTqPEkhbpVkb W6PlFPug2n8lthI3auscal6hwLcSJ3x/3CeH8xhSfcXDGFWL9HFKhocxVh9h5vN9Xtii y4WWcLnQznU8FXDM+zF0SEEE1BO02x0K76WP8+QTiJSBMoqcc3rSkyxl6KLogmtbWmht zlfKu8+I511tiVW0RWk/Q5WDVsuCCQU6U3QuF4EFU+7If8FKmZCIUlr5tSAa6Xyx0v1x /O0qXSEEDGXkzbxySQJCzzv4kclw/Ra1mvy5jHZk3f+aYRGa2d7c6pLgI2LgDeQJxTCv zdHg== X-Received: by 10.180.107.167 with SMTP id hd7mr15334816wib.33.1374399927449; Sun, 21 Jul 2013 02:45:27 -0700 (PDT) Date: Sun, 21 Jul 2013 10:45:25 +0100 From: Stephane Chazelas To: Peter Stephenson Cc: zsh-workers@zsh.org Subject: Re: bug with eval, proc-subst and pipes Message-ID: <20130721094525.GA10400@chaz.gmail.com> Mail-Followup-To: Peter Stephenson , zsh-workers@zsh.org References: <20130717201733.2c0b029b@pws-pc.ntlworld.com> <20130718095741.3f54725f@pwslap01u.europe.root.pri> <20130718102227.527429bd@pwslap01u.europe.root.pri> <20130718123210.054f1ea1@pwslap01u.europe.root.pri> <20130719200159.GA8712@chaz.gmail.com> <20130719205853.GB8712@chaz.gmail.com> <20130720181144.1b5a7fc0@pws-pc.ntlworld.com> <20130720202531.GA10442@chaz.gmail.com> <20130720235501.45a9e179@pws-pc.ntlworld.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130720235501.45a9e179@pws-pc.ntlworld.com> User-Agent: Mutt/1.5.21 (2010-09-15) 2013-07-20 23:55:01 +0100, Peter Stephenson: [...] > Any chance the following patch resolves the issue? (I checked > and there shouldn't be any work for Vincent this time > round...) [...] Well, something I failed to mention as I had overlooked it myself is that "ls" is a function from my .zshrc ls() { if [[ -t 1 ]]; then command ls -F --color "$@" else command ls "$@" fi } Now, and it was already the case before that last patch, I can't reproduce it with "paste" or "/bin/ls", only with that "ls" function, so it's a different case from the initial issue I was originally reporting (which seems to be now fixed with the patch before this one). To be clear, to reproduce this new one: zsh -f ls() command ls "$@" eval 'ls -l <(echo 1) <(echo 2) <(echo 3) <(echo 4)' | cat (no need for compinit here) And I can reproduce that one with Ubuntu 10.04 and 12.04 as well. -- Stephane