diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/eshell/esh-util.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/esh-util.el b/lisp/eshell/esh-util.el index d003148dc96..6fe260cbb46 100644 --- a/lisp/eshell/esh-util.el +++ b/lisp/eshell/esh-util.el @@ -283,7 +283,7 @@ as the $PATH was actually specified." (eshell-under-windows-p)) (push "." path)) (if (and remote (not literal-p)) - (mapcar (lambda (x) (file-name-concat remote x)) path) + (mapcar (lambda (x) (concat remote x)) path) path)))) (defun eshell-set-path (path) |