comparison lisp/ange-ftp.el @ 20015:d5c245242a88

(ange-ftp-name-format): Fix customize type. (ange-ftp-smart-gateway-port): Likewise.
author Karl Heuer <kwzh@gnu.org>
date Thu, 02 Oct 1997 02:55:24 +0000
parents cd39a4a66613
children 9823d1d05083
comparison
equal deleted inserted replaced
20014:2ecea967337d 20015:d5c245242a88
639 This is a list of the form \(REGEXP HOST USER NAME\), 639 This is a list of the form \(REGEXP HOST USER NAME\),
640 where REGEXP is a regular expression matching 640 where REGEXP is a regular expression matching
641 the full remote name, and HOST, USER, and NAME are the numbers of 641 the full remote name, and HOST, USER, and NAME are the numbers of
642 parenthesized expressions in REGEXP for the components (in that order)." 642 parenthesized expressions in REGEXP for the components (in that order)."
643 :group 'ange-ftp 643 :group 'ange-ftp
644 :type 'regexp) 644 :type '(list regexp
645 (integer :tag "Host group")
646 (integer :tag "User group")
647 (integer :tag "Name group")))
645 648
646 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of 649 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of
647 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. 650 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs.
648 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. 651 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out.
649 652
851 :type 'boolean) 854 :type 'boolean)
852 855
853 (defcustom ange-ftp-smart-gateway-port "21" 856 (defcustom ange-ftp-smart-gateway-port "21"
854 "*Port on gateway machine to use when smart gateway is in operation." 857 "*Port on gateway machine to use when smart gateway is in operation."
855 :group 'ange-ftp 858 :group 'ange-ftp
856 :type 'integer) 859 :type 'string)
857 860
858 (defcustom ange-ftp-send-hash t 861 (defcustom ange-ftp-send-hash t
859 "*If non-nil, send the HASH command to the FTP client." 862 "*If non-nil, send the HASH command to the FTP client."
860 :group 'ange-ftp 863 :group 'ange-ftp
861 :type 'boolean) 864 :type 'boolean)