mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-01 05:16:05 +01:00
unposted: fix typo (=+ to +=)
This commit is contained in:
parent
8ec1a25994
commit
5beb65a0f7
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2016-11-24 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* unposted: Completion/Unix/Command/_date: fix typo (=+ to +=)
|
||||
|
||||
* 40004 (tweaked): Completion/Redhat/Command/_yum: fix cache
|
||||
mechanism, complete groups and other minor improvements
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ else
|
|||
freebsd*|dragonfly*)
|
||||
args+=( '-R[display in RFC2822 format]' )
|
||||
;|
|
||||
openbsd*|netbsd*) args=+( '-a[gradually skew]' )
|
||||
openbsd*|netbsd*) args+=( '-a[gradually skew]' )
|
||||
;|
|
||||
openbsd*)
|
||||
args+=( '-z[specify timezone for output]:time zone:_time_zone')
|
||||
|
|
Loading…
Reference in a new issue