aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-ext.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-ext.el b/lisp/eshell/esh-ext.el
index f0b9a5eb083..7128d7e4749 100644
--- a/lisp/eshell/esh-ext.el
+++ b/lisp/eshell/esh-ext.el
@@ -202,7 +202,7 @@ causing the user to wonder if anything's really going on..."
202(defun eshell-external-command (command args) 202(defun eshell-external-command (command args)
203 "Insert output from an external COMMAND, using ARGS." 203 "Insert output from an external COMMAND, using ARGS."
204 (setq args (eshell-stringify-list (eshell-flatten-list args))) 204 (setq args (eshell-stringify-list (eshell-flatten-list args)))
205 (if (string-equal (file-remote-p default-directory 'method) "ftp") 205 (if (file-remote-p default-directory)
206 (eshell-remote-command command args)) 206 (eshell-remote-command command args))
207 (let ((interp (eshell-find-interpreter command))) 207 (let ((interp (eshell-find-interpreter command)))
208 (assert interp) 208 (assert interp)