about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2013-02-19 19:32:38 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2013-02-19 19:32:38 +0000
commit2698b61837ab374ad383285129ac8818a703979e (patch)
treee208b3375c0121722ef1bbbee638090df2d306d2
parentdd3b0506f99e690f521d9bf449dea47a51502cb2 (diff)
downloadzsh-2698b61837ab374ad383285129ac8818a703979e.tar.gz
zsh-2698b61837ab374ad383285129ac8818a703979e.tar.xz
zsh-2698b61837ab374ad383285129ac8818a703979e.zip
31055: missing $ in compaudit search of /proc file system
-rw-r--r--ChangeLog7
-rw-r--r--Completion/compaudit2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f33be725b..4bc33e318 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-02-19  Peter Stephenson  <p.w.stephenson@ntlworld.com>
+
+	* 31055: Completion/compaudit: missing '$' in search of /proc
+	file system.
+
 2013-02-12  Oliver Kiddle <opk@zsh.org>
 
 	* 31041: Test/comptest, Test/X02zlevi.ztst: add support for
@@ -520,5 +525,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5802 $
+* $Revision: 1.5803 $
 *****************************************************
diff --git a/Completion/compaudit b/Completion/compaudit
index 5eaa41e14..75742a0fb 100644
--- a/Completion/compaudit
+++ b/Completion/compaudit
@@ -97,7 +97,7 @@ local _i_exe
 # If we can find out who owns the executable, we will allow files to
 # be owned by that user, too.  The argument is that if you don't trust
 # the owner of the executable, it's way too late to worry about it now...
-for _i_exe in _i_exes; do
+for _i_exe in $_i_exes; do
   if [[ -e $_i_exe ]] ;then
     if zmodload -F zsh/stat b:zstat 2>/dev/null; then
       local -A _i_stathash