From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5625 invoked by alias); 16 Sep 2016 00:10:31 -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: 21924 Received: (qmail 2739 invoked from network); 16 Sep 2016 00:10:31 -0000 X-Qmail-Scanner-Diagnostics: from mail-pa0-f53.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.220.53):SA:0(0.0/5.0):. Processed in 0.123608 secs); 16 Sep 2016 00:10:31 -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=SPF_PASS,T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: zv@nxvr.org X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.220.53 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nxvr.org; s=google; h=subject:to:references:cc:from:message-id:date:user-agent :mime-version:in-reply-to:content-transfer-encoding; bh=uUKL/wzXU0QnGJOWVC06zb7hYSvZ1WYOS1NIjZ58xH0=; b=Che6rArdgtbY9w4e4eIeOOmJSF/kCTdQRXXDZLsowrthsPpAiUCYAtE9XKN8HjebM4 2CVH51Z2O824xaqLCqXVgEEJ+aM7kWmVD4P+46vy+jz1/P5EsVb4jh0R7jRJoO7SfMTq 6GgSU9RdkTvsVJVbAFg7H7QT5iCUKDI1ahk0w= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=uUKL/wzXU0QnGJOWVC06zb7hYSvZ1WYOS1NIjZ58xH0=; b=lBw4M+hRNv1Hoy7AHgRISzWUC8u0Ufq02mFQGk3enS+VaICCVpCKhp5iy2Edo/iIAk sMe0RC6or1c1C4V6ggSiVJgtF9PLqLPAC3wHfYgvMXZrm/brULVbLv5fAmF57jCBaVFC s5BtsN7yL9ssd/FSCwJCfQvqWPw+MLA65EufwikSiMJ1t+67ChtQH6iFwOKJOrjrw0Qk 5ndINbVIH1biMNyKXorcPQT69Z39ehzJ60X8I4UuRrPckM+Sscmk3SMFovU+Vrdk9J0v Lx9DdHm2jY73vQ12ZlU1w9fmYe94ZCzaGnSELrRp7mk1QHGpTy9HVmQUgqLeKsJ76OP+ yRdQ== X-Gm-Message-State: AE9vXwPUwZ335+sO6vvnyrqnF35qGAaNapbaEo3UhKPfIZMxE0N4DVl9z2MJo7Rn+mujaA== X-Received: by 10.66.185.232 with SMTP id ff8mr18909946pac.12.1473984627430; Thu, 15 Sep 2016 17:10:27 -0700 (PDT) Subject: Re: Quoting the arguments to a function To: =?UTF-8?Q?Lawrence_Vel=c3=a1zquez?= References: <55919C94-D486-4724-8B88-07BD709847C8@larryv.me> Cc: zsh-users@zsh.org From: zv Message-ID: Date: Thu, 15 Sep 2016 17:10:25 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <55919C94-D486-4724-8B88-07BD709847C8@larryv.me> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Yes, you can do that. The goal is to not *have* to do that. On 09/15/2016 05:09 PM, Lawrence Velázquez wrote: >> On Sep 15, 2016, at 5:41 PM, zv wrote: >> >> I want to supply the arguments of a function (an alias to Emacs `calc') without expansion, e.g: >> >> zv@computer# calc 20/2*15 >> 150 >> >> >> Today of course the result gives "zsh: no matches found: 20*15/2" > Why can't you just quote the argument? > > % calc '20/2*15' > > vq