Mercurial > emacs
changeset 4874:20154e6389eb
(rlogin, rlogin-mode): Use comint-file-name-prefix,
not comint-filename-prefix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 22 Oct 1993 17:12:54 +0000 |
parents | 8ba91b53e9a5 |
children | 78a52ca82a71 |
files | lisp/rlogin.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/rlogin.el Fri Oct 22 11:20:55 1993 +0000 +++ b/lisp/rlogin.el Fri Oct 22 17:12:54 1993 +0000 @@ -23,7 +23,7 @@ ;;; Commentary: ;; Support for remote logins using `rlogin'. -;; $Id$ +;; $Id: rlogin.el,v 1.12 1993/10/18 07:05:11 friedman Exp rms $ ;;; Todo: @@ -127,7 +127,7 @@ (set-process-filter proc 'rlogin-filter) ;; Set the prefix for filename completion and directory tracking ;; to find the remote machine's files by ftp. - (setq comint-filename-prefix (concat "/" (car args) ":")) + (setq comint-file-name-prefix (concat "/" (car args) ":")) (and rlogin-initially-track-cwd ;; Presume the user will start in his remote home directory. ;; If this is wrong, M-x dirs will fix it. @@ -166,7 +166,7 @@ (setq mode-name "rlogin") (use-local-map rlogin-mode-map) (setq shell-dirtrackp rlogin-initially-track-cwd) - (make-local-variable 'comint-filename-prefix) + (make-local-variable 'comint-file-name-prefix) (run-hooks 'rlogin-mode-hook))