Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[patch] kldload completion broken in 5.3



#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@xxxxxx



Messages sorted by: Reverse Date, Date, Thread, Author