From: Glenn Morris Date: Thu, 24 May 2012 21:27:22 +0000 (-0400) Subject: Fix previous (slogin and rlogin not appropriate for remote-shell-program) X-Git-Tag: emacs-24.2.90~471^2~6^2~110^2~8 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=532f361c96162f1a90756b2276f3091b1c273f23;p=emacs.git Fix previous (slogin and rlogin not appropriate for remote-shell-program) --- 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))))