]> git.eshelyaron.com Git - emacs.git/commitdiff
Mention the -e switch in an ange-ftp doc string
authorAlex Bochannek <alex@bochannek.com>
Thu, 27 May 2021 23:24:37 +0000 (01:24 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 27 May 2021 23:24:37 +0000 (01:24 +0200)
* lisp/net/ange-ftp.el (ange-ftp-ftp-program-args): Mention the -e
switch (bug#48494).

lisp/net/ange-ftp.el

index 04ea8091277e591625575a3ba35056e9453f841b..3f3a3df8e5577cabd8159d2799cfef47e049ebe2 100644 (file)
@@ -949,7 +949,11 @@ Some AT&T folks claim to use something called `pftp' here."
   :type 'string)
 
 (defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v")
-  "A list of arguments passed to the FTP program when started."
+  ;; 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))