diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-04-29 03:58:31 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-04-29 03:58:31 +0000 |
commit | 33ceea4f0e295fe3c831a2e36728e9976ce3ce1b (patch) | |
tree | 316aed0f369089df3cc2b28f3b61296be888ad00 /lisp/net | |
parent | bab6eadbfb51a79bf8a32b5f6eae8b3330f3216a (diff) | |
download | emacs-33ceea4f0e295fe3c831a2e36728e9976ce3ce1b.tar.gz |
(ange-ftp-passive-host-alist)
(ange-ftp-bs2000-additional-pubsets): Fix custom type.
Diffstat (limited to 'lisp/net')
-rw-r--r-- | lisp/net/ange-ftp.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index 7e4daa2c735..3e12c7ee647 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el @@ -1009,9 +1009,9 @@ HOSTNAME is a regular expression to match the FTP server host name(s). SETTING is \"on\" to turn passive mode on, \"off\" to turn it off, or nil meaning don't change it." :group 'ange-ftp - :type '(list (cons regex (choice (const :tag "On" "on") - (const :tag "Off" "off") - (const :tag "Don't change" nil)))) + :type '(repeat (cons regexp (choice (const :tag "On" "on") + (const :tag "Off" "off") + (const :tag "Don't change" nil)))) :version 21.3) ;;;; ------------------------------------------------------------ @@ -6111,7 +6111,7 @@ Other orders of $ and _ seem to all work just fine.") nil "*List of additional pubsets available to all users." :group 'ange-ftp - :type 'string) + :type '(repeat string)) ;; These parsing functions are as general as possible because the syntax ;; of ftp listings from BS2000 hosts is a bit erratic. What saves us is that |