diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-24 17:27:22 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-24 17:27:22 -0400 |
commit | 532f361c96162f1a90756b2276f3091b1c273f23 (patch) | |
tree | 70e5969d9638080b914f005a8f7ad2d7bc9a51a4 /lisp | |
parent | ead5edc08672fc010ae21019a692c7bdb73ac395 (diff) | |
download | emacs-532f361c96162f1a90756b2276f3091b1c273f23.tar.gz emacs-532f361c96162f1a90756b2276f3091b1c273f23.tar.bz2 emacs-532f361c96162f1a90756b2276f3091b1c273f23.zip |
Fix previous (slogin and rlogin not appropriate for remote-shell-program)
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index a6961f8dd03..dad04236ca3 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -998,7 +998,7 @@ Tip: You can use this expansion of remote identifier components ;; in this day and age. Almost everyone will use ssh, and have ;; whatever command they want to use in PATH. (purecopy - (let ((list '("ssh" "slogin" "rlogin" "remsh" "rcmd" "rsh"))) + (let ((list '("ssh" "remsh" "rcmd" "rsh"))) (while (and list (not (executable-find (car list))) (setq list (cdr list)))) |