diff options
author | Ruthra Kumar <ruthrab@gmail.com> | 2020-11-16 23:04:36 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-11-16 23:04:36 +0100 |
commit | 7ab6213886c72ac7a04a20b114a4f810c6484168 (patch) | |
tree | 242ee2488998cbcdf68a7471cc9a465d9cc8577e /lisp/eshell/esh-cmd.el | |
parent | 29eff32307494eabed5c0160ad1713d832e65f74 (diff) | |
download | emacs-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.el | 2 |
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." |