diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-07-17 22:54:43 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-07-17 22:54:43 +0000 |
commit | fa195bce9c65801deb803b99baabec83018f2b71 (patch) | |
tree | bb137f0f706b3f91fcea20abbd5c7bb7fc454844 /lisp/paths.el | |
parent | f9d5a20f4598c1cf78bdeb6168f457e9fc6ae031 (diff) | |
download | emacs-fa195bce9c65801deb803b99baabec83018f2b71.tar.gz |
(remote-shell-program): Try rcmd also.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 33cbff0c728..990e4a0ae70 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -128,6 +128,8 @@ Its name should end with a slash.") ((file-exists-p "/usr/ucb/rsh") "/usr/ucb/rsh") ((file-exists-p "/usr/bsd/rsh") "/usr/bsd/rsh") ((file-exists-p "/usr/local/bin/rsh") "/usr/local/bin/rsh") + ((file-exists-p "/usr/bin/rcmd") "/usr/bin/rcmd") + ((file-exists-p "/bin/rcmd") "/bin/rcmd") ((file-exists-p "/bin/rsh") "/bin/rsh") ((file-exists-p "/usr/bin/rsh") "/usr/bin/rsh") (t "rsh"))) |