From: Karl Heuer Date: Mon, 17 Jul 1995 22:54:43 +0000 (+0000) Subject: (remote-shell-program): Try rcmd also. X-Git-Tag: emacs-19.34~3299 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fa195bce9c65801deb803b99baabec83018f2b71;p=emacs.git (remote-shell-program): Try rcmd also. --- 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")))