From: <hzoli@VNET.IBM.COM> (Zoltan T. Hidvegi)
To: schaefer@nbn.com
Cc: zsh-workers@math.gatech.edu (Zsh workers list)
Subject: Re: Short loops?
Date: Wed, 26 Feb 1997 12:26:05 -0500 (EST) [thread overview]
Message-ID: <9702261726.AA21058@lotto.fishkill.ibm.com> (raw)
In-Reply-To: <970226091139.ZM16361@candle.brasslantern.com> from Bart Schaefer at "Feb 26, 97 09:11:39 am"
Bart Schaefer wrote:
> The doc ought to get changed, then. The two entries for `while' (and
> similarly for all the "short" variants) read:
>
> `while LIST do LIST done'
> `while LIST { LIST }'
>
> The first and second uses of LIST both require either a newline or a
> trailing semicolon; the fourth use of LIST may have a newline or a
> semicolon or not, without affecting the result; and the third use
> requires not only that there NOT be a newline or semicolon, but also
> that the list ends with a [[ ]] (( )) ( ) or { } construct.
No. No one of the above four LIST require any trailing semicolons or
newlines. As decribed in the manual, reserved words like do, done, { are
only recognized in command position. If you write while true { ... } then
{ is not in command position, it is simply an argument to true. Words are
in command position after a newline or a semicolon or after )) or ]] or
after do, then, {, } etc. Zsh has to know that { is not a simple argument
to a command, but a reserved word. The { echo } case works and seems to be
an exception to this rule but is really a pathologic special case handled
explicitely in lex.c and it only works if ignorebraces is not set. This
syntax worked in bash-1.14 but it no longer works in bash-2.0 because it
violates POSIX. When ignorebraces is set (e.g. in sh mode) the following
is perfectly valid:
while true { echo foo }
do
...
done
Here true is invoked with four arguments: {, echo, foo and }.
Zoltan
next prev parent reply other threads:[~1997-02-26 17:55 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
1997-02-26 2:13 Bart Schaefer
1997-02-26 16:10 ` Zoltan T. Hidvegi
1997-02-26 17:11 ` Bart Schaefer
1997-02-26 17:26 ` Zoltan T. Hidvegi [this message]
1997-02-26 19:09 ` Bart Schaefer
1997-02-26 19:27 ` Zoltan T. Hidvegi
1997-02-26 21:14 ` Bart Schaefer
1997-02-27 9:32 ` Peter Stephenson
1997-02-27 15:06 ` Zoltan T. Hidvegi
1997-02-27 18:16 ` Bart Schaefer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9702261726.AA21058@lotto.fishkill.ibm.com \
--to=hzoli@vnet.ibm.com \
--cc=schaefer@nbn.com \
--cc=zsh-workers@math.gatech.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.vuxu.org/mirror/zsh/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).