1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-07-20 07:41:04 +02:00

42209: fix option descriptions for non-GNU variants of tr

This commit is contained in:
dana 2018-01-03 15:29:52 -06:00 committed by Oliver Kiddle
parent f7a5211f38
commit 9f8ed99146
2 changed files with 4 additions and 1 deletions
ChangeLog
Completion/Unix/Command

View file

@ -1,5 +1,8 @@
2018-01-03 Oliver Kiddle <okiddle@yahoo.co.uk>
* dana: 42209: Completion/Unix/Command/_tr: fix option
descriptions for non-GNU variants
* 42208: Completion/Unix/Command/_yp: fix use of cache variables
* dana: 42207: Completion/Unix/Command/_chown,

View file

@ -28,7 +28,7 @@ case $variant in
;|
*)
for k in c d s; do
args+=( -$k$descr[$k] )
args+=( -$k$descr[-$k] )
done
;;
esac