From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17073 invoked by alias); 15 Sep 2016 21:58:45 -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: 21919 Received: (qmail 7308 invoked from network); 15 Sep 2016 21:58:45 -0000 X-Qmail-Scanner-Diagnostics: from 195.159.176.226 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(195.159.176.226):SA:0(1.3/5.0):. Processed in 0.276689 secs); 15 Sep 2016 21:58:45 -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=1.3 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, RDNS_NONE autolearn=no autolearn_force=no version=3.4.1 X-Envelope-From: gcszu-zsh-users@m.gmane.org X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: none (ns1.primenet.com.au: domain at m.gmane.org does not designate permitted sender hosts) X-Injected-Via-Gmane: http://gmane.org/ To: zsh-users@zsh.org From: zv Subject: Quoting the arguments to a function Date: Thu, 15 Sep 2016 14:41:03 -0700 Message-ID: Reply-To: zv@nxvr.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@blaine.gmane.org User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 X-Mozilla-News-Host: news://news.gwene.org:119 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" Is there any way to signal to ZSH that an alias or fn should have arguments supplied literally? - Zephyr