Variable: rlogin-remote-user

rlogin-remote-user is a customizable variable defined in rlogin.el.gz.

Value

nil

Documentation

The username used on the remote host.

This variable is buffer-local and defaults to your local user name. If rlogin is invoked with the -l option to specify the remote username, this variable is set from that.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/rlogin.el.gz
(defcustom rlogin-remote-user nil
  "The username used on the remote host.
This variable is buffer-local and defaults to your local user name.
If rlogin is invoked with the `-l' option to specify the remote username,
this variable is set from that."
  :type '(choice (const nil) string)
  :group 'rlogin)