From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13046 invoked by alias); 27 May 2011 01:41:18 -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: 29388 Received: (qmail 27234 invoked from network); 27 May 2011 01:41:17 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW, T_TO_NO_BRKTS_FREEMAIL autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 74.125.82.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:subject:date:message-id:x-mailer; bh=k5rOzgd3ca0jrQ8rzMqSh8+eU6T+0RCSIXoPK5S9+Nk=; b=OtT9qz61/rk6oFoiVdCFJIXlhyHYeCWkH509UtS/zYy9WZO4lBzF/RKf/h15ddgqzj aVt8X3Jw78WCJ7U2/q2OBXNuAPQEAlzOysRHxzXOtDaCOFIWdDUXVAxT5T0hc93TuMIR lcPrHziyUbJQBz3o3mmr8iYdkv6/ZqbGsrRNs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer; b=gFR+7Lun2D/n0zwGku6lEBYW0EZ4nq1/K03v2oPKi3lhXsuazIU38yozHtXtHUHVXV tviVyttX8MfdKOJysm4JR4o/Hz3dQfJ44o2bfO9YG1Nk5NcagahLynNM1mjJ0RpaOc3k rLCaUGgrTZNZitQjVb9z0t5TeKdVwwyMoC8+c= From: Mikael Magnusson To: zsh-workers@zsh.org Subject: PATCH: clarify which quotation marks to note Date: Fri, 27 May 2011 03:33:07 +0200 Message-Id: <1306459987-18807-1-git-send-email-mikachu@gmail.com> X-Mailer: git-send-email 1.7.4-rc1 I found the "Note the quotation marks" remark a bit confusing when I read this. --- Doc/Zsh/expn.yo | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index ce122ca..023e60e 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -2360,8 +2360,8 @@ latter is inserted into the command line word by word. For example, suppose a directory contains a single file `tt(lonely)'. Then the expression `tt(*(e:'reply=(${REPLY}{1,2})':))' will cause the words -`tt(lonely1 lonely2)' to be inserted into the command line. Note the -quotation marks. +`tt(lonely1)' and `tt(lonely2)' to be inserted into the command line. Note +the quotation marks in the expression. The form tt(PLUS())var(cmd) has the same effect, but no delimiters appear around var(cmd). Instead, var(cmd) is taken as the longest sequence of -- 1.7.4-rc1