From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5508 invoked by alias); 16 Sep 2016 00:09:51 -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: 21923 Received: (qmail 2385 invoked from network); 16 Sep 2016 00:09:51 -0000 X-Qmail-Scanner-Diagnostics: from out2-smtp.messagingengine.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(66.111.4.26):SA:0(0.0/5.0):. Processed in 0.115619 secs); 16 Sep 2016 00:09:51 -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: vq@larryv.me X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at spf.messagingengine.com designates 66.111.4.26 as permitted sender) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=larryv.me; h=cc :content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=LFcLaDZIFp3bTYquuEpwPImG7iE=; b=DMz05f RHUOmt6LxN/l2zhVXAyiJlRKs32UXNucpkXGopN3QxN8jAMvf3OPYR9y59HXUfd4 MClzokjBndKGIcS+YWRzygrVDZgj9sKl82sJ3EzfY7CXy5Xt/obXSVoytbRCzRvw TpQHmDMY/zoQMnlq0buQQVhXJZSNFhIbiWxUE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=LFcLaDZIFp3bTYq uuEpwPImG7iE=; b=PE8eQIYkKBPnXZBymX4d6pfaRCjoKWc8JufaJ0ybj1TTlRk VDEcvAgNa8vhhHm3ZoF6EU2/rOV0Mf+tGhz1K7oZcahGGffDxuwIeHeszNAA210U jL5cKkO/w0gOlAL8tBEGduX2PxorY1AtSxmp9J2RgcnMCCnV9jI3NA2hIAMY= X-Sasl-enc: BLHCqHwIL33s4VqTR+N2lvHM41IvFE1KK1d2z6iJhxPG 1473984587 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: Quoting the arguments to a function From: =?utf-8?Q?Lawrence_Vel=C3=A1zquez?= In-Reply-To: Date: Thu, 15 Sep 2016 20:09:46 -0400 Cc: zsh-users@zsh.org Content-Transfer-Encoding: quoted-printable Message-Id: <55919C94-D486-4724-8B88-07BD709847C8@larryv.me> References: To: zv@nxvr.org X-Mailer: Apple Mail (2.3124) > On Sep 15, 2016, at 5:41 PM, zv wrote: >=20 > I want to supply the arguments of a function (an alias to Emacs = `calc') without expansion, e.g: >=20 > zv@computer# calc 20/2*15 > 150 >=20 >=20 > 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=