diff options
author | Oliver Kiddle <opk@zsh.org> | 2021-07-09 00:32:37 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2021-07-09 00:32:37 +0200 |
commit | efec6bbdb55199430dec0a003e5dc8d293de4cff (patch) | |
tree | 7eda8bd67c569a086337ad07503ba0eabd66be89 /Completion/Unix/Command/_setfacl | |
parent | e6fdd35a83881a957ac206b4e128886d07f37c71 (diff) | |
download | zsh-efec6bbdb55199430dec0a003e5dc8d293de4cff.tar.gz zsh-efec6bbdb55199430dec0a003e5dc8d293de4cff.zip |
49151: remove commas erroneously included in _arguments exclusion lists
Diffstat (limited to 'Completion/Unix/Command/_setfacl')
-rw-r--r-- | Completion/Unix/Command/_setfacl | 10 |
1 files changed, 5 insertions, 5 deletions
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' |