diff options
author | Andreas Schwab <schwab@suse.de> | 2001-10-02 21:34:12 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2001-10-02 21:34:12 +0000 |
commit | 7d685c849a03eedb3670098e5e0243c7f900a674 (patch) | |
tree | d59cc16b7668a923073db81ae0ef4744a4d00485 /lisp | |
parent | ae1a95818a80555fe9a38a8da0321e20e59aec5f (diff) | |
download | emacs-7d685c849a03eedb3670098e5e0243c7f900a674.tar.gz emacs-7d685c849a03eedb3670098e5e0243c7f900a674.tar.bz2 emacs-7d685c849a03eedb3670098e5e0243c7f900a674.zip |
(ange-ftp-skip-msgs): Add 227 and 228 for Long
and Extended Passive Mode, resp.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/net/ange-ftp.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3b9d07da154..e3e7569a724 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2001-10-02 Andreas Schwab <schwab@suse.de> + + * net/ange-ftp.el (ange-ftp-skip-msgs): Add 227 and 228 for Long + and Extended Passive Mode, resp. + 2001-10-01 Eli Zaretskii <eliz@is.elta.co.il> These changes add support for Calendar-related items in the diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index 12aaaa58fe5..b167879db1e 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el @@ -678,7 +678,7 @@ parenthesized expressions in REGEXP for the components (in that order)." "^Data connection \\|" "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" "^500 .*AUTH \\(KERBEROS\\|GSSAPI\\)\\|^KERBEROS\\|" - "^227 .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") + "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") "*Regular expression matching ftp messages that can be ignored." :group 'ange-ftp :type 'regexp) |