about summary refs log tree commit diff
path: root/Completion/Unix/Command/_look
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2008-08-14 19:28:39 +0000
committerClint Adams <clint@users.sourceforge.net>2008-08-14 19:28:39 +0000
commitfcf8b81ec3eb38d48327af8c0979f3520e738a0f (patch)
treefc6473c3d96084049a26ab62169ddb40c4202d17 /Completion/Unix/Command/_look
parent1395a5a70ff08c81b12d5fa42cc22c30e06ffb47 (diff)
downloadzsh-fcf8b81ec3eb38d48327af8c0979f3520e738a0f.tar.gz
zsh-fcf8b81ec3eb38d48327af8c0979f3520e738a0f.tar.xz
zsh-fcf8b81ec3eb38d48327af8c0979f3520e738a0f.zip
25452: redirect stderr from look to /dev/null.
Diffstat (limited to 'Completion/Unix/Command/_look')
-rw-r--r--Completion/Unix/Command/_look2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_look b/Completion/Unix/Command/_look
index 94a90bc3f..24a016af4 100644
--- a/Completion/Unix/Command/_look
+++ b/Completion/Unix/Command/_look
@@ -11,6 +11,6 @@ _arguments -C -s \
   ':dictionary file:_files' && ret=0
 
 [[ -n "$state" && ! -prefix - ]] && _wanted values expl 'word prefix' \
-    compadd - $(_call_program words $words[1] '"$PREFIX"') && return
+    compadd - $(_call_program words $words[1] '"$PREFIX"' 2>/dev/null) && return
 
 return ret