about summary refs log tree commit diff
path: root/Completion/Unix
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2021-07-09 00:32:37 +0200
committerOliver Kiddle <opk@zsh.org>2021-07-09 00:32:37 +0200
commitefec6bbdb55199430dec0a003e5dc8d293de4cff (patch)
tree7eda8bd67c569a086337ad07503ba0eabd66be89 /Completion/Unix
parente6fdd35a83881a957ac206b4e128886d07f37c71 (diff)
downloadzsh-efec6bbdb55199430dec0a003e5dc8d293de4cff.tar.gz
zsh-efec6bbdb55199430dec0a003e5dc8d293de4cff.tar.xz
zsh-efec6bbdb55199430dec0a003e5dc8d293de4cff.zip
49151: remove commas erroneously included in _arguments exclusion lists
Diffstat (limited to 'Completion/Unix')
-rw-r--r--Completion/Unix/Command/_aap2
-rw-r--r--Completion/Unix/Command/_samba2
-rw-r--r--Completion/Unix/Command/_setfacl10
3 files changed, 7 insertions, 7 deletions
diff --git a/Completion/Unix/Command/_aap b/Completion/Unix/Command/_aap
index 089a993c3..38e50f1fc 100644
--- a/Completion/Unix/Command/_aap
+++ b/Completion/Unix/Command/_aap
@@ -20,7 +20,7 @@ _arguments -C -s -S \
   \*{-c,--command=}'[execute a command after reading the recipe]:aap command:' \
   '(-k --continue)'{-k,--continue}'[continue building after an error]' \
   '(-S --stop)'{-S,--stop}'[stop building at first error (default)]' \
-  '(-N,--nofetch-recipe -R --fetch-recipe)'{-R,--fetch-recipe}'[fetch recipe file and child recipes]' \
+  '(-N --nofetch-recipe -R --fetch-recipe)'{-R,--fetch-recipe}'[fetch recipe file and child recipes]' \
   '(-R --fetch-recipe -N --nofetch-recipe)'{-N,--nofetch-recipe}'[do not fetch recipes for "fetch" target]' \
   '(-a --nocache)'{-a,--nocache}"[always download files, don't use the cache]" \
   '(-l --local)'{-l,--local}'[do not recurse into subdirectories]' \
diff --git a/Completion/Unix/Command/_samba b/Completion/Unix/Command/_samba
index 775543794..6c7a64e18 100644
--- a/Completion/Unix/Command/_samba
+++ b/Completion/Unix/Command/_samba
@@ -96,7 +96,7 @@ case $service in
   smbstatus)
     _arguments -s -S $args \
       {-b,--brief}'[brief output]' \
-      '(-v --verbose)'(-v,--verbose)'[be verbose]' \
+      '(-v --verbose)'{-v,--verbose}'[be verbose]' \
       '(-d --debuglevel)'{-d+,--debuglevel=}'[specify debug level]:debug level:(0 1 2 3 4 5 6 7 8 9 10)' \
       '(-u --user)'{-u+,--user=}'[specify user to restrict information to]:user:_users' \
       '(-B --byterange)'{-B,--byterange}'[include byte range locks]' \
diff --git a/Completion/Unix/Command/_setfacl b/Completion/Unix/Command/_setfacl
index 5c573a581..14be49d95 100644
--- a/Completion/Unix/Command/_setfacl
+++ b/Completion/Unix/Command/_setfacl
@@ -3,11 +3,11 @@
 if _pick_variant cygwin=cygwin unix --version; then
 # cygwin 1.5.25
 _arguments -s -S \
-  '(-d, --delete)'{-d,--delete}'[delete one or more specified ACL entries]:ACL entry:' \
-  '(-f, --file)'{-f,--file}'[set ACL entries for FILE to ACL entries read from a ACL_FILE]:ACL file:_files' \
-  '(-m, --modify)'{-m,--modify}'[modify one or more specified ACL entries]:ACL entry:' \
-  '(-r, --replace)'{-r,--replace}'[replace mask entry with maximum permissions needed for the file group class]' \
-  '(-s, --substitute)'{-s,--substitute}'[substitute specified ACL entries for the \[ACL of FILE\]]:ACL entry:' \
+  '(-d --delete)'{-d,--delete}'[delete one or more specified ACL entries]:ACL entry' \
+  '(-f --file)'{-f,--file}'[set ACL entries for FILE to ACL entries read from a ACL_FILE]:ACL file:_files' \
+  '(-m --modify)'{-m,--modify}'[modify one or more specified ACL entries]:ACL entry' \
+  '(-r --replace)'{-r,--replace}'[replace mask entry with maximum permissions needed for the file group class]' \
+  '(-s --substitute)'{-s,--substitute}'[substitute specified ACL entries for the \[ACL of FILE\]]:ACL entry' \
   '(- *)'{-h,--help}'[output usage information and exit]' \
   '(- *)'{-v,--version}'[output version information and exit]' \
   '*: :_files'