aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorJohn Wiegley2001-05-18 16:39:49 +0000
committerJohn Wiegley2001-05-18 16:39:49 +0000
commit94d136339dfdbe176318a4c836757e22137ede1e (patch)
tree372c1351950578f3c7498569cc57a2a4c94892a7 /lisp/eshell
parenta129972c07ad25aae491e33c72cee9ccb9843f22 (diff)
downloademacs-94d136339dfdbe176318a4c836757e22137ede1e.tar.gz
emacs-94d136339dfdbe176318a4c836757e22137ede1e.zip
(eshell/which): Use `eshell-explicit-command-char' instead of ?*.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-cmd.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-cmd.el b/lisp/eshell/esh-cmd.el
index 79df4d5ffba..7ee97d5debc 100644
--- a/lisp/eshell/esh-cmd.el
+++ b/lisp/eshell/esh-cmd.el
@@ -1231,7 +1231,7 @@ be finished later after the completion of an asynchronous subprocess."
1231 "Identify the COMMAND, and where it is located." 1231 "Identify the COMMAND, and where it is located."
1232 (eshell-for name (cons command names) 1232 (eshell-for name (cons command names)
1233 (let (program alias direct) 1233 (let (program alias direct)
1234 (if (eq (aref name 0) ?*) 1234 (if (eq (aref name 0) eshell-explicit-command-char)
1235 (setq name (substring name 1) 1235 (setq name (substring name 1)
1236 direct t)) 1236 direct t))
1237 (if (and (not direct) 1237 (if (and (not direct)