diff options
author | Clint Adams <clint@users.sourceforge.net> | 2005-08-08 01:45:16 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2005-08-08 01:45:16 +0000 |
commit | 20866bf154711e64e6f97936cf8e0055a7fc8917 (patch) | |
tree | 4ed18ab223b64129d6f1db7772ffc946019f8107 /Completion/Unix | |
parent | bd3ea046eef4902b480aea338e1fae10a0b5b244 (diff) | |
download | zsh-20866bf154711e64e6f97936cf8e0055a7fc8917.tar.gz zsh-20866bf154711e64e6f97936cf8e0055a7fc8917.tar.xz zsh-20866bf154711e64e6f97936cf8e0055a7fc8917.zip |
unposted: fix syntax error in _mencal introduced by recent cleanup.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_mencal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_mencal b/Completion/Unix/Command/_mencal index 224b4e5ba..ca56c609d 100644 --- a/Completion/Unix/Command/_mencal +++ b/Completion/Unix/Command/_mencal @@ -14,7 +14,7 @@ _arguments -C \ '(-)'{-V,--version}'[print version information]' \ \*{-c,--config}'[config]:options:->option' && ret=0 -if [[ $state = option ]]; do +if [[ $state = option ]]; then _values -s , 'config option' \ '(s start)'{s,start}'[start day]:day' \ '(l length)'{l,length}'[period length]:length' \ |