Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Missing LPAR/RPAR in options.yo



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