aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-10-02 02:55:24 +0000
committerKarl Heuer1997-10-02 02:55:24 +0000
commitd23237090f989d8a43bafdb4116416d4b5ec344e (patch)
tree571a7d4118c647d82b7f6f8f1979ef9a962fc9c1
parent7f0feddae256983d4ee6d694ce3f7dab771a837c (diff)
downloademacs-d23237090f989d8a43bafdb4116416d4b5ec344e.tar.gz
emacs-d23237090f989d8a43bafdb4116416d4b5ec344e.zip
(ange-ftp-name-format): Fix customize type.
(ange-ftp-smart-gateway-port): Likewise.
-rw-r--r--lisp/ange-ftp.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ange-ftp.el b/lisp/ange-ftp.el
index 6760dba5cb9..6ca24f9df87 100644
--- a/lisp/ange-ftp.el
+++ b/lisp/ange-ftp.el
@@ -641,7 +641,10 @@ where REGEXP is a regular expression matching
641the full remote name, and HOST, USER, and NAME are the numbers of 641the full remote name, and HOST, USER, and NAME are the numbers of
642parenthesized expressions in REGEXP for the components (in that order)." 642parenthesized 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.
@@ -853,7 +856,7 @@ or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil."
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."