diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_mencal | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 2ce0e0f13..afe95b84a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-08-07 Clint Adams <clint@zsh.org> + + unposted: Completion/Unix/Command/_mencal: fix syntax error + introduced by recent cleanup. + 2005-08-02 Peter Stephenson <pws@csr.com> * 21557: Thorsten Dahlheimer: Src/glob.c: BRACE_CCL was broken 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' \ |