summaryrefslogtreecommitdiff
path: root/lisp/eshell/esh-cmd.el
diff options
context:
space:
mode:
authorRuthra Kumar <ruthrab@gmail.com>2020-11-16 23:04:36 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2020-11-16 23:04:36 +0100
commit7ab6213886c72ac7a04a20b114a4f810c6484168 (patch)
tree242ee2488998cbcdf68a7471cc9a465d9cc8577e /lisp/eshell/esh-cmd.el
parent29eff32307494eabed5c0160ad1713d832e65f74 (diff)
downloademacs-7ab6213886c72ac7a04a20b114a4f810c6484168.tar.gz
emacs-7ab6213886c72ac7a04a20b114a4f810c6484168.tar.bz2
emacs-7ab6213886c72ac7a04a20b114a4f810c6484168.zip
Use 'eshell-find-alias-function' instead of fboundp
* lisp/eshell/esh-cmd.el (eshell-invoke-directly): Fix problem with (require 'em-tramp) making password prompting from "sudo bash" no longer work (bug#43772).
Diffstat (limited to 'lisp/eshell/esh-cmd.el')
-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 f1cf9336899..68b34837a23 100644
--- a/lisp/eshell/esh-cmd.el
+++ b/lisp/eshell/esh-cmd.el
@@ -918,7 +918,7 @@ at the moment are:
(funcall pred name))
(throw 'simple nil)))
t))
- (fboundp (intern-soft (concat "eshell/" name))))))
+ (eshell-find-alias-function name))))
(defun eshell-eval-command (command &optional input)
"Evaluate the given COMMAND iteratively."