about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2004-11-02 23:26:42 +0000
committerClint Adams <clint@users.sourceforge.net>2004-11-02 23:26:42 +0000
commit07d95ba04c599775fa671df39ff02e50107a373f (patch)
treec4677895e909d161d2d234c4d0535a9be1ab0812
parentf9c66cd45efa30a1d6162b658a517711b86737d8 (diff)
downloadzsh-07d95ba04c599775fa671df39ff02e50107a373f.tar.gz
zsh-07d95ba04c599775fa671df39ff02e50107a373f.tar.xz
zsh-07d95ba04c599775fa671df39ff02e50107a373f.zip
* 20539: Completion/Unix/Command/_make: avoid problems minus signs
 in expandVars().
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_make2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 16b757a01..0f47b65a1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-02  Clint Adams  <clint@zsh.org>
+
+	* 20539: Completion/Unix/Command/_make: avoid problems
+	minus signs in expandVars().
+
 2004-10-29  Peter Stephenson  <pws@csr.com>
 
 	* 20528: Src/exec.c: Clint spotted that fix in 18492 to make
diff --git a/Completion/Unix/Command/_make b/Completion/Unix/Command/_make
index 80b48946e..abfac58a1 100644
--- a/Completion/Unix/Command/_make
+++ b/Completion/Unix/Command/_make
@@ -38,7 +38,7 @@ expandVars() {
 		;;
 	    esac
 	else
-	    print $ret
+	    print -- $ret
 	    return
 	fi
     done