From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Phil Sainty Newsgroups: gmane.emacs.devel Subject: Re: tramp doesn't work for me in 26.1 but does in 25.3 Date: Wed, 20 Jun 2018 13:16:55 +1200 Message-ID: <38528dfedd70624bbc5e348cc540c90d@webmail.orcon.net.nz> References: NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1529457357 12926 195.159.176.226 (20 Jun 2018 01:15:57 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Wed, 20 Jun 2018 01:15:57 +0000 (UTC) User-Agent: Orcon Webmail Cc: Emacs-devel , emacs-devel@gnu.org To: Kevin Layer Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 20 03:15:53 2018 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 1fVRit-0003BY-Op for ged-emacs-devel@m.gmane.org; Wed, 20 Jun 2018 03:15:48 +0200 Original-Received: from localhost ([::1]:45594 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fVRl0-0000mF-3i for ged-emacs-devel@m.gmane.org; Tue, 19 Jun 2018 21:17:58 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36601) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fVRkA-0000lz-UX for emacs-devel@gnu.org; Tue, 19 Jun 2018 21:17:07 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fVRk7-00034e-Gx for emacs-devel@gnu.org; Tue, 19 Jun 2018 21:17:06 -0400 Original-Received: from smtp-4.orcon.net.nz ([60.234.4.59]:58266) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fVRk7-0002zX-4U; Tue, 19 Jun 2018 21:17:03 -0400 Original-Received: from [10.253.37.70] (port=54150 helo=webmail.orcon.net.nz) by smtp-4.orcon.net.nz with esmtpa (Exim 4.86_2) (envelope-from ) id 1fVRjz-0004dN-R2; Wed, 20 Jun 2018 13:16:55 +1200 Original-Received: from wlgwil-nat-office.catalyst.net.nz ([202.78.240.7]) via [10.253.37.253] by webmail.orcon.net.nz with HTTP (HTTP/1.1 POST); Wed, 20 Jun 2018 13:16:55 +1200 In-Reply-To: X-Sender: psainty@orcon.net.nz X-GeoIP: -- X-Spam_score: -2.9 X-Spam_score_int: -28 X-Spam_bar: -- X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 60.234.4.59 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:226543 Archived-At: On 2018-06-20 10:33, Kevin Layer wrote: > When I C-x C-f /machinename:/dir TAB I get nothing. > tramp-default-method is the same in both versions (scp). Tramp now requires an explicit method component in the filename. Relevant NEWS entries are: *** The method part of remote file names is mandatory now. A valid remote file name starts with "/method:host:" or "/method:user@host:". *** The new pseudo method "-" is a marker for the default method. "/-::" is the shortest remote file name then. So either of these should work in Emacs 26: C-x C-f /-:machinename:/dir C-x C-f /scp:machinename:/dir