diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Completion/Unix/Command/_setfacl | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index bbcb94dbc..80040e5a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-10-12 Peter Stephenson <pws@csr.com> + + * Mikael: 28343: Completion/Unix/Command/_setfacl: didn't + complete file argument in all cases. + 2010-10-10 Peter Stephenson <p.w.stephenson@ntlworld.com> * 28340: Src/params.c: assignment with negative index didn't @@ -13739,5 +13744,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5103 $ +* $Revision: 1.5104 $ ***************************************************** diff --git a/Completion/Unix/Command/_setfacl b/Completion/Unix/Command/_setfacl index 593c2b57a..af6c4d4e5 100644 --- a/Completion/Unix/Command/_setfacl +++ b/Completion/Unix/Command/_setfacl @@ -30,5 +30,6 @@ _arguments -s -S \ '--restore=[restore ACLs]:file:_files' \ '--test[test mode (ACLs are not modified)]' \ '--version[print version and exit]' \ - '--help[this help text]' + '--help[this help text]' \ + '*: :_files' fi |