aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2002-05-12 20:36:50 +0000
committerPavel Janík2002-05-12 20:36:50 +0000
commit84778d91c383bbe446e4b6b15dddb49d9e31174f (patch)
treeb01d9c56f385f847a28d69c681043a1b6cef01c8
parentb7f30cf56953b58086f8eabf3db5e3681ca2e64b (diff)
downloademacs-84778d91c383bbe446e4b6b15dddb49d9e31174f.tar.gz
emacs-84778d91c383bbe446e4b6b15dddb49d9e31174f.zip
(ange-ftp-try-passive-mode)
(ange-ftp-passive-host-alist): Change :version attributes to be strings.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/net/ange-ftp.el4
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f6d3819e072..c3d749db7f2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12002-05-12 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * net/ange-ftp.el (ange-ftp-try-passive-mode)
4 (ange-ftp-passive-host-alist): Change :version attributes to be
5 strings.
6
12002-05-12 Markus Rost <rost@math.ohio-state.edu> 72002-05-12 Markus Rost <rost@math.ohio-state.edu>
2 8
3 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Define it with 9 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Define it with
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el
index a4043fb80e6..720255726ad 100644
--- a/lisp/net/ange-ftp.el
+++ b/lisp/net/ange-ftp.el
@@ -1000,7 +1000,7 @@ Don't use any other value."
1000 "It t, try to use passive mode in ftp, if the client program supports it." 1000 "It t, try to use passive mode in ftp, if the client program supports it."
1001 :group 'ange-ftp 1001 :group 'ange-ftp
1002 :type 'boolean 1002 :type 'boolean
1003 :version 21.1) 1003 :version "21.1")
1004 1004
1005(defcustom ange-ftp-passive-host-alist nil 1005(defcustom ange-ftp-passive-host-alist nil
1006 "Alist of FTP servers that need \"passive\" mode. 1006 "Alist of FTP servers that need \"passive\" mode.
@@ -1012,7 +1012,7 @@ or nil meaning don't change it."
1012 :type '(repeat (cons regexp (choice (const :tag "On" "on") 1012 :type '(repeat (cons regexp (choice (const :tag "On" "on")
1013 (const :tag "Off" "off") 1013 (const :tag "Off" "off")
1014 (const :tag "Don't change" nil)))) 1014 (const :tag "Don't change" nil))))
1015 :version 21.4) 1015 :version "21.4")
1016 1016
1017;;;; ------------------------------------------------------------ 1017;;;; ------------------------------------------------------------
1018;;;; Hash table support. 1018;;;; Hash table support.