diff options
| author | Andreas Schwab <schwab@suse.de> | 1998-06-24 09:23:00 +0000 |
|---|---|---|
| committer | Andreas Schwab <schwab@suse.de> | 1998-06-24 09:23:00 +0000 |
| commit | 79b96ef4fb138f45baf8ec2e9891272cc646804e (patch) | |
| tree | 8ca04cc3a2865528272ca2bc12f3c432f26207e9 /lisp | |
| parent | ab2739aa47b2ffb574dc1ca7396d7424a0a6a250 (diff) | |
| download | emacs-79b96ef4fb138f45baf8ec2e9891272cc646804e.tar.gz | |
(rlogin-process-connection-type,
rlogin-directory-tracking-mode): Use `other' widget type.
Diffstat (limited to 'lisp')
| -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 @@ ;; Maintainer: Noah Friedman <friedman@prep.ai.mit.edu> ;; Keywords: unix, comm -;; $Id: rlogin.el,v 1.40 1997/06/23 08:22:53 friedman Exp rms $ +;; $Id: rlogin.el,v 1.41 1998/03/14 04:46:55 rms Exp $ ;; This file is part of GNU Emacs. @@ -78,8 +78,8 @@ If `nil', use a pipe (if pipes are supported on the local system). Generally it is better not to waste ptys on systems which have a static number of them. On the other hand, some implementations of `rlogin' assume a pty is being used, and errors will result from using a pipe instead." - :type '(choice (const :tag "ptys" t) - (const :tag "pipes" nil)) + :type '(choice (const :tag "pipes" nil) + (other :tag "ptys" t)) :group 'rlogin) (defcustom rlogin-directory-tracking-mode 'local @@ -101,7 +101,7 @@ simply setting this variable, since the function does the necessary re-synching of directories." :type '(choice (const :tag "off" nil) (const :tag "ftp" t) - (const :tag "local" local)) + (other :tag "local" local)) :group 'rlogin) (make-variable-buffer-local 'rlogin-directory-tracking-mode) |
