about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@des.no>2017-03-30 12:57:57 +0200
committerPeter Stephenson <pws@zsh.org>2017-03-30 12:18:26 +0100
commit48501165545140148d82ba047e3f73a8bde1fe08 (patch)
tree303515696cd0406515ff5ec01e49643e6a686c66
parent5aec3f974279973091de4974bbd41b765bbc435b (diff)
downloadzsh-48501165545140148d82ba047e3f73a8bde1fe08.tar.gz
zsh-48501165545140148d82ba047e3f73a8bde1fe08.tar.xz
zsh-48501165545140148d82ba047e3f73a8bde1fe08.zip
Fix typo breaking kld completion
-rw-r--r--ChangeLog3
-rw-r--r--Completion/BSD/Command/_kld2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d3a3d9f58..02693d959 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2017-03-30  Peter Stephenson  <p.stephenson@samsung.com>
 
+	* Dag-Erling Smørgrav: 40915: Completion/BSD/Command/_kld: fix
+	breakage.
+
 	* Sebastian: 40909: Test/D04parameter.ztst: stress test for
 	parameter substitution.
 
diff --git a/Completion/BSD/Command/_kld b/Completion/BSD/Command/_kld
index 94528955c..42fdc2bd0 100644
--- a/Completion/BSD/Command/_kld
+++ b/Completion/BSD/Command/_kld
@@ -26,7 +26,7 @@ _kld() {
   case "$service" in
     kldload)
       _arguments -s -S -A "-*" \
-        "-n[don't try to load module if already loaded]"
+        "-n[don't try to load module if already loaded]" \
         '-v[be verbose]' \
         '-q[silence any extraneous warnings]' \
         '*:module to load:_kld_module'