From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29307 invoked by alias); 22 Jul 2016 18:35:22 -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: 38920 Received: (qmail 23761 invoked from network); 22 Jul 2016 18:35:22 -0000 X-Qmail-Scanner-Diagnostics: from mail-pf0-f181.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(209.85.192.181):SA:0(0.0/5.0):. Processed in 0.128728 secs); 22 Jul 2016 18:35:22 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: schaefer@brasslantern.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: none (ns1.primenet.com.au: domain at brasslantern.com does not designate permitted sender hosts) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject:cc :mime-version; bh=OnsnL5ikRQbX2Vakn+eu/9Ml7nk/r6I7R+thsLEC0+I=; b=XPFqEm7gavrDAQeWG9IF8S8AybSDpDwQrQF5SiojXPn9zHxR0bRyOuEHXeA5Dtstb2 VZYxRCp6LXSUA/5jizsqnTFE/u5NTif/H02Ph/GqDG1u7rg622DWr1rpMcJBGQ+QzM48 qIRvV8Sfu6g4JJMUlCSblnfCf+qWLYxZ1RVpZnto+untEAOtiAGubZGXNtxV/boDmrgk bbCoo/tXq/8dSmAsT0oyMxAHCC0XU/PKX+Xw4BwFEGjLMSizWj4xS4BbLBNg+IXWey0A vjb7i0e5fQaZOD4evFAGTWl+2wO8FMG8s+EGACFSGtUNo/ZOUr/3J/oh7lQDZ04v7nkz /5bw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:cc:mime-version; bh=OnsnL5ikRQbX2Vakn+eu/9Ml7nk/r6I7R+thsLEC0+I=; b=MsHZCIQWLOzYmue7enmSJARVUDe5J3M3yd4vzk0OnRnQ07I+VXCUSn8XCUAoPM9rXR 6jU6VaMpu3HjCNYPEghZjiD7O5JLJLBf6q1JGdv9OyDCpSXG3pRB3FIE4rWDbQsfkULi FXuucU9nCVdbyETFA70vuHrzWSwNYEYobkjaIJGvkDpV2NL2d4F9eJpia87Ky0Zb5mTA zeWOAcz32PXni5H/kLLtOrsgq9XR0sAs6yijYgkpcDqj2lA8bfWLeaFOgkp5wz51qBUR iBMQYAxF7eM1H6pC5v350cIz26JJbJMBEexiN5pbNLq11XWV9NAItksmwMjUshuIm5C/ G3/g== X-Gm-Message-State: AEkoouunvW6Ga8tA48ia6JluRihFEKBQwbA/iQHi5HIPrjTN8K/KLWMiGno1DtzMq2ALKg== X-Received: by 10.98.10.71 with SMTP id s68mr8940696pfi.110.1469212515715; Fri, 22 Jul 2016 11:35:15 -0700 (PDT) From: Bart Schaefer Message-Id: <160722113554.ZM15595@torch.brasslantern.com> Date: Fri, 22 Jul 2016 11:35:54 -0700 In-Reply-To: Comments: In reply to Sebastian Hoffner "Re: Feature request: Bash compliance" (Jul 22, 3:51pm) References: X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: Sebastian Hoffner Subject: Re: Feature request: Bash compliance Cc: Zsh hackers list MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Jul 22, 3:51pm, Sebastian Hoffner wrote: } Subject: Re: Feature request: Bash compliance } } I ran into problems which are detailed here: } https://github.com/intuit/wasabi/issues/49 . My zsh is installed via } homebrew: zsh 5.2 (x86_64-apple-darwin15.4.0). torch% case this in case> this) echo now that;& case> that) echo this is that;; case> esac now that this is that torch% I would note that wasabi.sh begins with #!/usr/bin/env bash which has the consequence that zsh is going to hand it off to bash even if your $SHELL is zsh, unless you are explicitly passing it to zsh with e.g. "zsh wasabi.sh". So I think the problem here is all bash-3.2 and not zsh.