From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: tar file-name-handler Date: Sat, 03 Feb 2018 21:41:28 +0200 Message-ID: <83tvuxamjb.fsf@gnu.org> References: <87d11njtbg.fsf@gmx.de> <87r2q3xp2q.fsf@gmx.de> <87zi4qi7js.fsf@gmx.de> <831si2b679.fsf@gnu.org> <87607ehsby.fsf@gmx.de> Reply-To: Eli Zaretskii NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1517686838 29235 195.159.176.226 (3 Feb 2018 19:40:38 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sat, 3 Feb 2018 19:40:38 +0000 (UTC) Cc: monnier@iro.umontreal.ca, emacs-devel@gnu.org To: Michael Albinus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 03 20:40:33 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 1ei3fi-0006h0-Rr for ged-emacs-devel@m.gmane.org; Sat, 03 Feb 2018 20:40:22 +0100 Original-Received: from localhost ([::1]:39472 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ei3hi-0008QB-EW for ged-emacs-devel@m.gmane.org; Sat, 03 Feb 2018 14:42:26 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:37785) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ei3h4-0008Pw-9K for emacs-devel@gnu.org; Sat, 03 Feb 2018 14:41:47 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ei3h1-0005Wj-6I for emacs-devel@gnu.org; Sat, 03 Feb 2018 14:41:46 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46183) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ei3h1-0005Wd-2I; Sat, 03 Feb 2018 14:41:43 -0500 Original-Received: from [176.228.60.248] (port=2200 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1ei3h0-0004Xm-F2; Sat, 03 Feb 2018 14:41:42 -0500 In-reply-to: <87607ehsby.fsf@gmx.de> (message from Michael Albinus on Sat, 03 Feb 2018 18:54:25 +0100) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e 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:222474 Archived-At: > From: Michael Albinus > Cc: monnier@iro.umontreal.ca, emacs-devel@gnu.org > Date: Sat, 03 Feb 2018 18:54:25 +0100 > > > Error: (user-error "Package `tramp-archive' not supported") > > > > although the archive is parsed correctly. And Tramp is loaded as > > result of visiting a Tar file, although it's unneeded and unhelpful. > > There was an error in `locate-dominating-file', which did expand FILE > even if it wasn't a directory. Due to this, your tar file "foo.tar" was > expanded to "foo.tar/". I've fixed this, and I've also added some code > which shall prevent loading tramp-archive (and the whole Tramp then) > when it doesn't make sense. > > Pushed to master. Thanks, works for me.