diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-06-26 23:20:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-06-26 23:20:05 +0000 |
commit | b865c02b1444fa5ff896c48e6395f135a180f1e2 (patch) | |
tree | a72a7213f791b6758e3d2c22bc8bb08991a85c8b /lisp/paths.el | |
parent | bedbce828ef04b5b1fb03863d4844b2fb74a96f3 (diff) | |
download | emacs-b865c02b1444fa5ff896c48e6395f135a180f1e2.tar.gz |
(remote-shell-program): Fix typo checking /usr/bin/remsh.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 7d120e7e11b..33cbff0c728 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -123,7 +123,7 @@ Its name should end with a slash.") ((file-exists-p "/usr/ucb/remsh") "/usr/ucb/remsh") ((file-exists-p "/usr/bsd/remsh") "/usr/bsd/remsh") ((file-exists-p "/bin/remsh") "/bin/remsh") - ((file-exists-p "/usr/bin/remsh") "/bin/remsh") + ((file-exists-p "/usr/bin/remsh") "/usr/bin/remsh") ((file-exists-p "/usr/local/bin/remsh") "/usr/local/bin/remsh") ((file-exists-p "/usr/ucb/rsh") "/usr/ucb/rsh") ((file-exists-p "/usr/bsd/rsh") "/usr/bsd/rsh") |