diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/X/Command/_qiv | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 51f92be7f..7680ec118 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-01-02 Clint Adams <clint@zsh.org> + + * 23080: arno: Completion/X/Command/_qiv: fix -c and -g + (both were mistakenly -b). + 2006-12-19 Peter Stephenson <pws@csr.com> * 23071: Src/utils.c: problem with signed characters with diff --git a/Completion/X/Command/_qiv b/Completion/X/Command/_qiv index 2df109cd6..d10407584 100644 --- a/Completion/X/Command/_qiv +++ b/Completion/X/Command/_qiv @@ -14,8 +14,8 @@ _arguments -s \ '(-m --maxpect)'{-m,--maxpect}'[expand image to fit screen size]' \ '(-t --scale_down)'{-t,--scale_down}'[shrink images to fit screen size]' \ '(-b --brightness)'{-b,--brightness}'[set brightness]:brightness (-32..32)' \ - '(-c --contrast)'{-b,--contrast}'[set contrast]:contrast (-32..32)' \ - '(-g --gamma)'{-b,--gamma}'[set gamma]:gamma (-32..32)' \ + '(-c --contrast)'{-c,--contrast}'[set contrast]:contrast (-32..32)' \ + '(-g --gamma)'{-g,--gamma}'[set gamma]:gamma (-32..32)' \ '(-n --no_filter)'{-n,--no_filter}'[disable filtering of images by extension]' \ '(-i --no_statusbar -I --statusbar)'{-i,--no_statusbar}'[disable statusbar]' \ '(-i --no_statusbar -I --statusbar)'{-I,--statusbar}'[enable statusbar]' \ |