From: Michael Albinus Date: Sat, 7 Mar 2015 19:57:32 +0000 (+0100) Subject: Make tramp-ssh-controlmaster-options a defcustom. Do not merge with master. X-Git-Tag: emacs-25.0.90~2564^2~207 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5ab767b8dcea50b4d02c3910d19c223a5402f99d;p=emacs.git Make tramp-ssh-controlmaster-options a defcustom. Do not merge with master. Fixes: debbugs:20015 * net/tramp.el (tramp-ssh-controlmaster-options): Make it a defcustom. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b277c7c518..9556dfdbc42 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2015-03-07 Michael Albinus + + * net/tramp.el (tramp-ssh-controlmaster-options): Make it a + defcustom. (Bug#20015) + 2015-03-07 Stefan Monnier * battery.el (battery-echo-area-format): Simplify default. diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 953525f37e4..7661a4ca19c 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -308,7 +308,7 @@ started on the local host. You should specify a remote host 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 @@ -334,7 +334,10 @@ useful only in combination with `tramp-default-proxies-alist'.") (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