diff options
| author | Oliver Kiddle <opk@zsh.org> | 2016-11-24 16:20:43 +0100 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2016-11-24 16:20:43 +0100 |
| commit | 5beb65a0f7ad1abfccb08c1b3646f3fc61663535 (patch) | |
| tree | 9bc4f9b739ad08cbc4b94b755ea2919a1d730274 | |
| parent | 40004: fix cache mechanism, complete groups and other minor improvements (diff) | |
| download | zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.tar zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.tar.gz zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.tar.bz2 zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.tar.lz zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.tar.xz zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.tar.zst zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.zip | |
unposted: fix typo (=+ to +=)
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Completion/Unix/Command/_date | 2 |
2 files changed, 3 insertions, 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 diff --git a/Completion/Unix/Command/_date b/Completion/Unix/Command/_date index 16b34d7d6..731f6963b 100644 --- a/Completion/Unix/Command/_date +++ b/Completion/Unix/Command/_date @@ -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') |
