diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2011-12-28 03:20:18 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2011-12-28 03:20:18 +0000 |
commit | 30c98aa87ed0605f2e7cd254463624c062665cc8 (patch) | |
tree | c042114357e00dd0eba7978c494d8176e4ba3593 /Doc | |
parent | ae146b0fe238a693e51233da1650004c2eb32b19 (diff) | |
download | zsh-30c98aa87ed0605f2e7cd254463624c062665cc8.tar.gz zsh-30c98aa87ed0605f2e7cd254463624c062665cc8.tar.xz zsh-30c98aa87ed0605f2e7cd254463624c062665cc8.zip |
30069: replace empty parens with LPAR()RPAR() in an example.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Zsh/options.yo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Zsh/options.yo b/Doc/Zsh/options.yo index 68247264f..4bf55fa0c 100644 --- a/Doc/Zsh/options.yo +++ b/Doc/Zsh/options.yo @@ -567,12 +567,12 @@ tt(IGNORE_BRACES), this option does not disable brace expansion. 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) |