Variable: ange-ftp-fatal-msgs

ange-ftp-fatal-msgs is a customizable variable defined in ange-ftp.el.gz.

Value

"^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|^No control connection\\|unknown host\\|^lost connection"

Documentation

Regular expression matching FTP messages that indicate serious errors.

These mean that the FTP process should be (or already has been) killed.

Source Code

;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defcustom ange-ftp-fatal-msgs
  (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|"
	  "^No control connection\\|unknown host\\|^lost connection")
  "Regular expression matching FTP messages that indicate serious errors.

These mean that the FTP process should be (or already has been) killed."
  :group 'ange-ftp
  :type 'regexp)