summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--Completion/Unix/Command/_date2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d133b8da1..21f1ea285 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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')