Fixes: debbugs:20015
* net/tramp.el (tramp-ssh-controlmaster-options): Make it a defcustom.
+2015-03-07 Michael Albinus <michael.albinus@gmx.de>
+
+ * net/tramp.el (tramp-ssh-controlmaster-options): Make it a
+ defcustom. (Bug#20015)
+
2015-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
* battery.el (battery-echo-area-format): Simplify default.
useful only in combination with `tramp-default-proxies-alist'.")
;;;###tramp-autoload
-(defconst tramp-ssh-controlmaster-options
+(defcustom tramp-ssh-controlmaster-options
(let ((result "")
(case-fold-search t))
(ignore-errors
(setq result (concat result " -o ControlPersist=no")))))))
result)
"Call ssh to detect whether it supports the Control* arguments.
-Return a string to be used in `tramp-methods'.")
+Return a string to be used in `tramp-methods'."
+ :group 'tramp
+ :version "24.5"
+ :type 'string)
;;;###tramp-autoload
(defcustom tramp-use-ssh-controlmaster-options