comparison lisp/rlogin.el @ 9250:7cf726dccf2e

(rlogin): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Mon, 03 Oct 1994 22:57:43 +0000
parents de32691e953c
children 2fb93cbc2d87
comparison
equal deleted inserted replaced
9249:909ae53a446d 9250:7cf726dccf2e
21 ;; Inc.; 675 Massachusetts Avenue.; Cambridge, MA 02139, USA. 21 ;; Inc.; 675 Massachusetts Avenue.; Cambridge, MA 02139, USA.
22 22
23 ;;; Commentary: 23 ;;; Commentary:
24 24
25 ;; Support for remote logins using `rlogin'. 25 ;; Support for remote logins using `rlogin'.
26 ;; $Id: rlogin.el,v 1.18 1994/06/16 08:09:34 friedman Exp pot $ 26 ;; $Id: rlogin.el,v 1.19 1994/09/19 11:47:05 pot Exp rms $
27 27
28 ;; If you wish for rlogin mode to prompt you in the minibuffer for 28 ;; If you wish for rlogin mode to prompt you in the minibuffer for
29 ;; passwords when a password prompt appears, just enter m-x send-invisible 29 ;; passwords when a password prompt appears, just enter m-x send-invisible
30 ;; and type in your line, or add `comint-watch-for-password-prompt' to 30 ;; and type in your line, or add `comint-watch-for-password-prompt' to
31 ;; `comint-output-filter-functions'. 31 ;; `comint-output-filter-functions'.
84 84
85 The variable `rlogin-program' contains the name of the actual program to 85 The variable `rlogin-program' contains the name of the actual program to
86 run. It can be a relative or absolute path. 86 run. It can be a relative or absolute path.
87 87
88 The variable `rlogin-explicit-args' is a list of arguments to give to 88 The variable `rlogin-explicit-args' is a list of arguments to give to
89 the rlogin when starting. They are added after any arguments given in ARGS." 89 the rlogin when starting. They are added after any arguments given in ARGS.
90
91 If `rlogin-initially-track-cwd' is non-nil (which is true by default),
92 then the default directory in that buffer is set to a remote (FTP) file name
93 to access your home directory on the remote machine. Occasionally
94 this causes an error, if you cannot access the home directory on that
95 machine. This error is harmless as long as you don't try to use
96 that default directory."
90 (interactive (list 97 (interactive (list
91 (read-from-minibuffer "rlogin arguments (hostname first): ") 98 (read-from-minibuffer "rlogin arguments (hostname first): ")
92 current-prefix-arg)) 99 current-prefix-arg))
93 (let* ((process-connection-type rlogin-process-connection-type) 100 (let* ((process-connection-type rlogin-process-connection-type)
94 (buffer-name (format "*rlogin-%s*" input-args)) 101 (buffer-name (format "*rlogin-%s*" input-args))