Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[patch] kldload completion broken in 5.3
- X-seq: zsh-workers 40915
- From: Dag-Erling Smørgrav <des@xxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [patch] kldload completion broken in 5.3
- Date: Thu, 30 Mar 2017 12:57:57 +0200
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
#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