about summary refs log tree commit diff
path: root/Src/builtin.c
diff options
context:
space:
mode:
authorPeter Stephenson <p.w.stephenson@ntlworld.com>2015-01-02 22:25:24 +0000
committerPeter Stephenson <p.w.stephenson@ntlworld.com>2015-01-02 22:25:24 +0000
commit454bb777cfc9b9c7970ccc1c7574fbf66b83d157 (patch)
treea82acfdaf1d7f73a7ce44f8a1de641371ebc5e98 /Src/builtin.c
parent33d1439fdbf56ec100dbddfa9f7472a0da59d183 (diff)
downloadzsh-454bb777cfc9b9c7970ccc1c7574fbf66b83d157.tar.gz
zsh-454bb777cfc9b9c7970ccc1c7574fbf66b83d157.tar.xz
zsh-454bb777cfc9b9c7970ccc1c7574fbf66b83d157.zip
users/19671: remove confusion with whence -a.
If the argument is a full path don't try to search the path for it.
Diffstat (limited to 'Src/builtin.c')
-rw-r--r--Src/builtin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/builtin.c b/Src/builtin.c
index 47d1aa06d..ebc06542e 100644
--- a/Src/builtin.c
+++ b/Src/builtin.c
@@ -3315,7 +3315,7 @@ bin_whence(char *nam, char **argv, Options ops, int func)
 
 	/* Option -a is to search the entire path, *
 	 * rather than just looking for one match. */
-	if (all) {
+	if (all && **argv != '/') {
 	    char **pp, *buf;
 
 	    pushheap();