summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2016-11-24 16:20:43 +0100
committerOliver Kiddle <opk@zsh.org>2016-11-24 16:20:43 +0100
commit5beb65a0f7ad1abfccb08c1b3646f3fc61663535 (patch)
tree9bc4f9b739ad08cbc4b94b755ea2919a1d730274
parent8ec1a25994c82ee4d7e3819abe8606dafa069be7 (diff)
downloadzsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.tar.gz
zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.tar.xz
zsh-5beb65a0f7ad1abfccb08c1b3646f3fc61663535.zip
unposted: fix typo (=+ to +=)
-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')