diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Completion/X/Command/_xset | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index c1f353484..66b03f116 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2011-05-12 Mikael Magnusson <mikachu@gmail.com> + * 29245: Completion/X/Command/_xset: pass -O instead of -o + to _describe. + +2011-05-12 Mikael Magnusson <mikachu@gmail.com> + * Nikolai Weibull: 29124: Completion/Unix/Command/_git: Fix -l option. @@ -14669,5 +14674,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5294 $ +* $Revision: 1.5295 $ ***************************************************** diff --git a/Completion/X/Command/_xset b/Completion/X/Command/_xset index 819a2040d..53ec635d4 100644 --- a/Completion/X/Command/_xset +++ b/Completion/X/Command/_xset @@ -27,8 +27,8 @@ _xset_compopts () { tmp=("$tmp[@]" "$opt") fi done - _describe -o options tmp -- || - _describe -o options allopts -- + _describe -O options tmp -- || + _describe -O options allopts -- } _xset_compfpadd () { |