diff options
| author | Andreas Schwab | 1998-06-24 09:23:00 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-06-24 09:23:00 +0000 |
| commit | 79b96ef4fb138f45baf8ec2e9891272cc646804e (patch) | |
| tree | 8ca04cc3a2865528272ca2bc12f3c432f26207e9 | |
| parent | ab2739aa47b2ffb574dc1ca7396d7424a0a6a250 (diff) | |
| download | emacs-79b96ef4fb138f45baf8ec2e9891272cc646804e.tar.gz emacs-79b96ef4fb138f45baf8ec2e9891272cc646804e.zip | |
(rlogin-process-connection-type,
rlogin-directory-tracking-mode): Use `other' widget type.
| -rw-r--r-- | lisp/rlogin.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/rlogin.el b/lisp/rlogin.el index 435765f3b4c..04cea26cdfc 100644 --- a/lisp/rlogin.el +++ b/lisp/rlogin.el | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | ;; Maintainer: Noah Friedman <friedman@prep.ai.mit.edu> | 6 | ;; Maintainer: Noah Friedman <friedman@prep.ai.mit.edu> |
| 7 | ;; Keywords: unix, comm | 7 | ;; Keywords: unix, comm |
| 8 | 8 | ||
| 9 | ;; $Id: rlogin.el,v 1.40 1997/06/23 08:22:53 friedman Exp rms $ | 9 | ;; $Id: rlogin.el,v 1.41 1998/03/14 04:46:55 rms Exp $ |
| 10 | 10 | ||
| 11 | ;; This file is part of GNU Emacs. | 11 | ;; This file is part of GNU Emacs. |
| 12 | 12 | ||
| @@ -78,8 +78,8 @@ If `nil', use a pipe (if pipes are supported on the local system). | |||
| 78 | Generally it is better not to waste ptys on systems which have a static | 78 | Generally it is better not to waste ptys on systems which have a static |
| 79 | number of them. On the other hand, some implementations of `rlogin' assume | 79 | number of them. On the other hand, some implementations of `rlogin' assume |
| 80 | a pty is being used, and errors will result from using a pipe instead." | 80 | a pty is being used, and errors will result from using a pipe instead." |
| 81 | :type '(choice (const :tag "ptys" t) | 81 | :type '(choice (const :tag "pipes" nil) |
| 82 | (const :tag "pipes" nil)) | 82 | (other :tag "ptys" t)) |
| 83 | :group 'rlogin) | 83 | :group 'rlogin) |
| 84 | 84 | ||
| 85 | (defcustom rlogin-directory-tracking-mode 'local | 85 | (defcustom rlogin-directory-tracking-mode 'local |
| @@ -101,7 +101,7 @@ simply setting this variable, since the function does the necessary | |||
| 101 | re-synching of directories." | 101 | re-synching of directories." |
| 102 | :type '(choice (const :tag "off" nil) | 102 | :type '(choice (const :tag "off" nil) |
| 103 | (const :tag "ftp" t) | 103 | (const :tag "ftp" t) |
| 104 | (const :tag "local" local)) | 104 | (other :tag "local" local)) |
| 105 | :group 'rlogin) | 105 | :group 'rlogin) |
| 106 | 106 | ||
| 107 | (make-variable-buffer-local 'rlogin-directory-tracking-mode) | 107 | (make-variable-buffer-local 'rlogin-directory-tracking-mode) |