summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-05-24 17:27:22 -0400
committerGlenn Morris <rgm@gnu.org>2012-05-24 17:27:22 -0400
commit532f361c96162f1a90756b2276f3091b1c273f23 (patch)
tree70e5969d9638080b914f005a8f7ad2d7bc9a51a4 /lisp
parentead5edc08672fc010ae21019a692c7bdb73ac395 (diff)
downloademacs-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.el2
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))))