From: Gerd Moellmann Date: Tue, 18 Jan 2000 12:02:31 +0000 (+0000) Subject: (ange-ftp-skip-msgs): Add regexp for EPRT. X-Git-Tag: emacs-pretest-21.0.90~5323 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=72dbbc7d75068349e9d668d691e98faea2bcf590;p=emacs.git (ange-ftp-skip-msgs): Add regexp for EPRT. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 55406cff166..45016ac29d2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2000-01-18 Gerd Moellmann + + * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT. + 2000-01-17 Gerd Moellmann * tmm.el (tmm-goto-completions): Adapt to prompt being part diff --git a/lisp/ange-ftp.el b/lisp/ange-ftp.el index 63f5baff875..d9af92f83ea 100644 --- a/lisp/ange-ftp.el +++ b/lisp/ange-ftp.el @@ -671,7 +671,7 @@ parenthesized expressions in REGEXP for the components (in that order)." "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" "^Data connection \\|" "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" - "^227 .*[Pp]assive") + "^227 .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") "*Regular expression matching ftp messages that can be ignored." :group 'ange-ftp :type 'regexp)