From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master 37b88d7: Fix bug#23006 Date: Fri, 10 Mar 2017 05:10:59 -0500 Message-ID: References: <20170309184457.29604.13048@vcs0.savannah.gnu.org> <20170309184458.08C9725FCF@vcs0.savannah.gnu.org> <87k27xfo3q.fsf@detlef> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1489140701 3310 195.159.176.226 (10 Mar 2017 10:11:41 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 10 Mar 2017 10:11:41 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) Cc: emacs-devel@gnu.org To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Mar 10 11:11:36 2017 Return-path: Envelope-to: ged-emacs-devel@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 1cmHWJ-0000H5-FS for ged-emacs-devel@m.gmane.org; Fri, 10 Mar 2017 11:11:35 +0100 Original-Received: from localhost ([::1]:38309 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cmHWP-00026H-DL for ged-emacs-devel@m.gmane.org; Fri, 10 Mar 2017 05:11:41 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:52461) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cmHVr-000260-TV for emacs-devel@gnu.org; Fri, 10 Mar 2017 05:11:09 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cmHVo-0007VP-IJ for emacs-devel@gnu.org; Fri, 10 Mar 2017 05:11:07 -0500 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:60927) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cmHVo-0007Ud-Aw for emacs-devel@gnu.org; Fri, 10 Mar 2017 05:11:04 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0DFCgA1e8JY/3OXCkxdGwEBAQMBAQEJAQEBg1FBihOFd5BdKQGXHIYcBAICgjdEFAECAQEBAQEBAWsohRYBBAFWIwULCzQSFBgNJIoLCLNFimoBAQEBBgIBJYs9ijkFkFeLYpx4hmATkWiBRDYhgQMiFQgshRMdggEiimABAQE X-IPAS-Result: A0DFCgA1e8JY/3OXCkxdGwEBAQMBAQEJAQEBg1FBihOFd5BdKQGXHIYcBAICgjdEFAECAQEBAQEBAWsohRYBBAFWIwULCzQSFBgNJIoLCLNFimoBAQEBBgIBJYs9ijkFkFeLYpx4hmATkWiBRDYhgQMiFQgshRMdggEiimABAQE X-IronPort-AV: E=Sophos;i="5.36,140,1486443600"; d="scan'208";a="294928363" Original-Received: from 76-10-151-115.dsl.teksavvy.com (HELO pastel.home) ([76.10.151.115]) by smtp.teksavvy.com with ESMTP; 10 Mar 2017 05:11:00 -0500 Original-Received: by pastel.home (Postfix, from userid 20848) id D6C606186C; Fri, 10 Mar 2017 05:10:59 -0500 (EST) In-Reply-To: <87k27xfo3q.fsf@detlef> (Michael Albinus's message of "Fri, 10 Mar 2017 11:00:25 +0100") X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:212874 Archived-At: > The only meaning of `non-essential' is to give Tramp a hint that we're > in completion. No, the meaning of it is: we're running code which is not essential (basically, running in something equivalent to a background thread). It's been introduced mainly for Tramp, so that Tramp can decide whether it should try to open a new connection or not (e.g., it should open a new connection when the user does `C-x C-f /ssh:foo:bar TAB' but it shouldn't open a new connection when the user does `M-x icomplete-mode RET C-x C-f /ssh:foo:bar'). The binding you added gets rid of this distinction, and indeed, now if I do `C-x C-f /ssh:foo:bar TAB' I don't get any completion any more. Stefan