From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id 08233eb9 for ; Thu, 15 Nov 2018 00:46:03 +0000 (UTC) Received: (qmail 12552 invoked by alias); 15 Nov 2018 00:45:47 -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: List-Unsubscribe: X-Seq: 23760 Received: (qmail 11120 invoked by uid 1010); 15 Nov 2018 00:45:47 -0000 X-Qmail-Scanner-Diagnostics: from mail-ed1-f47.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.100.2/25112. spamassassin: 3.4.2. Clear:RC:0(209.85.208.47):SA:0(-2.0/5.0):. Processed in 2.167409 secs); 15 Nov 2018 00:45:47 -0000 X-Envelope-From: manabu.matsui@gmail.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=boBu1WZdajFPiAbLuPu3oiU5sQ6VO+Tcp2FopmTvw5k=; b=oU+e8X5GCyXCPWaaK90kI/bE54TAsUuZb3p2Ql6KqC7JBQVaMf3V3NGvDx4zFTphYG CQmx+McJWOdXaiWMyKkP+adGXN9aJuNm4B9+fQseM4CVpHOLzN7k3WIL5BRxjObZs0XP xr30hVAIXKW3hOQjAFihUicEHi6hR8ey6ybu73N3FrjkocJgQvWd1RSvNffmicSa7/N1 rOrASYobhKQKpB5AL6Oa4KdCKWx0YXG6428TS+4K4jcTW8r1KwBLWAe1wrisqDT7o/eI w2A90GtX/WvRqg/gjrQxHvPL0cSHeSO4O46zZnMP/DyRKjbJjkUJRdK38Mx2Tmgkyr/M Wtow== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=boBu1WZdajFPiAbLuPu3oiU5sQ6VO+Tcp2FopmTvw5k=; b=YcKvMxbd9yV5LLedqeNGtADR7mND+rVjBMAdn5wskZFnwmyHocqgepupHQznhrXOYz rJwQzTXidaFFSipJxMTZlZrFD406amanXOiEOKAB9MZGzClqGwm1PKjKh6pydhpi8jk9 gFIB3UKEZIAwFH1MUMp2+8S8ndwc0syG0wCqSovY83rYlQ+njx9lu9q3WBn3F+YaQqQz DrvcN3CScEr1mK6whbZoaSKXzNTgj+kPy3WWIdop8zJta5CTbReoaMIP3Hg+QxPw0Ozg eyXgpNoHy5LyIr2yb9d/kQXaPou0hwLvIDF3iSqVSrNWao1QDojpLwUzHOjtZ/cOU/45 akNQ== X-Gm-Message-State: AGRZ1gL5XbJrwRAJHYAnT3qn6D9w4eJdAMKXaaudUXlukBS8UTKfR5RN fDRfnloCBLFD9KhNJ55U3+H7WXOhyMyia2e5PDGobmGS X-Google-Smtp-Source: AJdET5cNH9ci5nyob7gGFG94VlneZuSne6Bf3CBExsQEmWEgX6c9aROYNs+fOCybPsDAc0e9FLm5sIerBLUT3K4aZyU= X-Received: by 2002:a17:906:7805:: with SMTP id u5-v6mr3626893ejm.213.1542242740056; Wed, 14 Nov 2018 16:45:40 -0800 (PST) MIME-Version: 1.0 References: <1542187635.3686.1.camel@samsung.com> In-Reply-To: <1542187635.3686.1.camel@samsung.com> From: Manabu Matsui Date: Thu, 15 Nov 2018 09:45:28 +0900 Message-ID: Subject: Re: Strange behavior of $jobstates To: zsh-users@zsh.org Content-Type: text/plain; charset="UTF-8" On Wed, 14 Nov 2018 09:27:15 +0000, Peter Stephenson wrote: > Yes, the change is correct. Setting a parameter in the left hand side > of the pipeline shouild not affect anything outside the pipeline. > > Although the standard doesn't specify which side of the pipeline is run > in a forked copy, in zsh it's always the left hand side, so the fact > that effects were escaping from there was a bug. I Thank you for the easy-to-understand explanation. t was difficult for me to understand with ChangeLog description alone.