about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2011-09-06 16:22:08 +0000
committerMikael Magnusson <mikachu@gmail.com>2011-09-06 16:22:08 +0000
commit40a31c0180446437a2684a142a07880bf9caf1bb (patch)
treef245e0ebb44c10184275e04837097fe25e9b845a /Completion/Zsh
parentf3a6bf454d8040a88325816a7f8756ebd75aa270 (diff)
downloadzsh-40a31c0180446437a2684a142a07880bf9caf1bb.tar.gz
zsh-40a31c0180446437a2684a142a07880bf9caf1bb.tar.xz
zsh-40a31c0180446437a2684a142a07880bf9caf1bb.zip
29741: _zattr: add ret=0 and fix filename globbing.
Diffstat (limited to 'Completion/Zsh')
-rw-r--r--Completion/Zsh/Command/_zattr4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Zsh/Command/_zattr b/Completion/Zsh/Command/_zattr
index cdc52281d..1924bb28d 100644
--- a/Completion/Zsh/Command/_zattr
+++ b/Completion/Zsh/Command/_zattr
@@ -26,9 +26,9 @@ _arguments \
   '1:file:_files' \
   '2:parameter'
 ;;
-esac
+esac && ret=0
 
 if [[ $state = attrs ]]; then
-  zlistattr $~line[1] REPLY 2> /dev/null
+  zlistattr ${~${(Q)line[1]}} REPLY 2> /dev/null
   _wanted attrs expl 'attribute' compadd $REPLY
 fi