Variable: ange-ftp-ftp-program-args
ange-ftp-ftp-program-args is a customizable variable defined in
ange-ftp.el.gz.
Value
("-i" "-n" "-g" "-v")
Documentation
A list of arguments passed to the FTP program when started.
Some FTP clients may also require the "-e" argument, which disables command line editing.
Source Code
;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v")
;; Clients that use the BSD editline instead of the GNU readline
;; library may need to disable command line editing. (Bug#48494)
"A list of arguments passed to the FTP program when started.
Some FTP clients may also require the \"-e\" argument, which disables
command line editing."
:group 'ange-ftp
:type '(repeat string))