Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Missing LPAR/RPAR in options.yo
- X-seq: zsh-workers 30069
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: Zsh hackers list <zsh-workers@xxxxxxx>
- Subject: Missing LPAR/RPAR in options.yo
- Date: Tue, 27 Dec 2011 13:35:36 -0800
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
iIncluding file Zsh/options.yo
options.yo:577: No macro: args(...)
options.yo:577: No macro: args(...)
Index: Doc/Zsh/options.yo
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Zsh/options.yo,v
retrieving revision 1.104
diff -u -r1.104 options.yo
--- Doc/Zsh/options.yo 8 Dec 2011 19:42:07 -0000 1.104
+++ Doc/Zsh/options.yo 27 Dec 2011 21:32:13 -0000
@@ -567,12 +567,12 @@
For example, with both options unset a function may be defined
in the following fashion:
-example(args() { echo $# })
+example(args+LPAR()RPAR() { echo $# })
while if either option is set, this does not work and something
equivalent to the following is required:
-example(args() { echo $#; })
+example(args+LPAR()RPAR() { echo $#; })
)
pindex(KSH_GLOB)
Messages sorted by:
Reverse Date,
Date,
Thread,
Author