zsh-workers
 help / color / mirror / code / Atom feed
* [patch] kldload completion broken in 5.3
@ 2017-03-30 10:57 Dag-Erling Smørgrav
  0 siblings, 0 replies; only message in thread
From: Dag-Erling Smørgrav @ 2017-03-30 10:57 UTC (permalink / raw)
  To: zsh-workers

#999170 broke completion for kldload due to a missing line continuation
in the _arguments command.  Here's the fix:

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'

DES
-- 
Dag-Erling Smørgrav - des@des.no


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-03-30 11:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-30 10:57 [patch] kldload completion broken in 5.3 Dag-Erling Smørgrav

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).