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 | 9ade6d5ea4b6d0b448923b07a40c9c1db5f32506 (patch) | |
tree | 0b1edf6ff44962a5532f3278106d6e8696ace675 /lisp/paths.el | |
parent | 58c59fd7af20f44c2aea1e56a716d1df8f669a56 (diff) | |
download | emacs-9ade6d5ea4b6d0b448923b07a40c9c1db5f32506.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") |