Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Function syntax
- X-seq: zsh-workers 15567
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: Function syntax
- Date: Fri, 3 Aug 2001 18:14:19 +0000
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
I don't think changing this to match POSIX would break anything, as at the
moment redirections following a functon definition are pretty much useless.
--- Forwarded mail from David Korn <dgk@xxxxxxxxxxxxxxxx>
Date: Fri, 3 Aug 2001 14:01:02 -0400 (EDT)
From: David Korn <dgk@xxxxxxxxxxxxxxxx>
To: shell@xxxxxxxxxxxxxxxx
--------
> On Aug 3, 10:56am, David Korn wrote:
> }
> } With function definition redirections are processed before the {...}
> } block is entered.
> }
> } foo()
> } {
> } print hello world
> } } > $1
> }
> } will cause
> } foo bar
> } to write 'hello world' into bar.
>
> Ahh, I didn't know that. In zsh redirections outside the braces are
> not considered to be part of the function body.
In section 3.9.5 of the Posix shell standard,
it defines the syntax as
fname() compound-command [io-redirect]
and it says that the option io_redirect shall be performed during the
execution of the function itself.
>
> --
> Bart Schaefer Brass Lantern Enterprises
> http://www.well.com/user/barts http://www.brasslantern.com
>
> Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net
> ____________________________________________________________
David Korn
research!dgk
dgk@xxxxxxxxxxxxxxxx
____________________________________________________________
To unsubscribe from this list, please send the following
two-line message to majordomo@xxxxxxxxxxxxxxxx, in which
your_email_address should be replaced by the address you
used when you subscribed to the list:
unsubscribe shell your_email_address
end
---End of forwarded mail from David Korn <dgk@xxxxxxxxxxxxxxxx>
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net
Messages sorted by:
Reverse Date,
Date,
Thread,
Author