From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Van L Newsgroups: gmane.emacs.help Subject: Re: 25.3.1 netbsd; scp tramp has long delay on first connection Date: Tue, 25 Sep 2018 21:23:29 +1000 Message-ID: <7E0A2304-BE4B-4731-8566-3467B4B71D53@scratch.space> References: <0D73340E-45D1-4BDB-A0C1-1B8497C8E6CE@scratch.space> <877ej9am3u.fsf@gmx.de> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1537875487 20587 195.159.176.226 (25 Sep 2018 11:38:07 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 25 Sep 2018 11:38:07 +0000 (UTC) Cc: Help Gnu Emacs mailing list To: Michael Albinus Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Sep 25 13:38:03 2018 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g4lfG-0005HR-RB for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Sep 2018 13:38:02 +0200 Original-Received: from localhost ([::1]:52367 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g4lhN-0000sv-FL for geh-help-gnu-emacs@m.gmane.org; Tue, 25 Sep 2018 07:40:13 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58697) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g4leA-00078s-JN for help-gnu-emacs@gnu.org; Tue, 25 Sep 2018 07:37:00 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g4lRI-00035n-Gc for help-gnu-emacs@gnu.org; Tue, 25 Sep 2018 07:23:39 -0400 Original-Received: from relay5-d.mail.gandi.net ([217.70.183.197]:51709) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g4lRI-00034P-97 for help-gnu-emacs@gnu.org; Tue, 25 Sep 2018 07:23:36 -0400 X-Originating-IP: 220.244.158.222 Original-Received: from epi.local (220-244-158-222.tpgi.com.au [220.244.158.222]) (Authenticated sender: van@scratch.space) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 7DFCE1C0009; Tue, 25 Sep 2018 11:23:33 +0000 (UTC) In-Reply-To: <877ej9am3u.fsf@gmx.de> X-Mailer: Apple Mail (2.3124) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.183.197 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:118007 Archived-At: >>> You can disable these tests by setting >>> tramp-use-ssh-controlmaster-options to nil. >>=20 >> =E2=94=8C=E2=94=80=E2=94=80=E2=94=80=E2=94=80 >> =E2=94=82 ;; settings don't apply after Emacs restart >> =E2=94=82 (custom-set-variables >> =E2=94=82 '(tramp-use-ssh-controlmaster-options nil)) >> =E2=94=82=20 >> =E2=94=82 ;; this does >> =E2=94=82 (setq tramp-use-ssh-controlmaster-options nil) >> =E2=94=94=E2=94=80=E2=94=80=E2=94=80=E2=94=80 >=20 > It might be needed to apply (require 'tramp) prior the > custom-set-variables call. Yes, (require 'tramp) before custom-set-variables absent setq lets the option setting stay after=20 restarting Emacs. Line 5 in the documentation for require can do without the lower case second word repeated in upper case by the third. =E2=94=8C=E2=94=80=E2=94=80=E2=94=80=E2=94=80 =E2=94=82 1 require is a built-in function in =E2=80=98C source = code=E2=80=99. =E2=94=82 2 =20 =E2=94=82 3 (require FEATURE &optional FILENAME NOERROR) =E2=94=82 4 =20 =E2=94=82 5 If feature FEATURE is not loaded, load it from FILENAME. =E2=94=82 6 If FEATURE is not a member of the list =E2=80=98features=E2=80= =99, then the feature is =E2=94=82 7 not loaded; so load the file FILENAME. =E2=94=94=E2=94=80=E2=94=80=E2=94=80=E2=94=80=