From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Neal Becker Newsgroups: gmane.emacs.help Subject: Re: tramp not working linux, quotation marks Date: Sun, 24 Sep 2017 08:55:09 -0400 Message-ID: References: <87mv5kldcs.fsf@gmx.de> <20170924122611.GC3132@tuxteam.de> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8Bit X-Trace: blaine.gmane.org 1506257762 18047 195.159.176.226 (24 Sep 2017 12:56:02 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 24 Sep 2017 12:56:02 +0000 (UTC) User-Agent: KNode/4.14.10 To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Sep 24 14:55:53 2017 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 1dw6Rr-0003yv-KX for geh-help-gnu-emacs@m.gmane.org; Sun, 24 Sep 2017 14:55:51 +0200 Original-Received: from localhost ([::1]:38061 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dw6Ry-0000FM-QL for geh-help-gnu-emacs@m.gmane.org; Sun, 24 Sep 2017 08:55:58 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40759) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dw6RU-0000F5-Ng for help-gnu-emacs@gnu.org; Sun, 24 Sep 2017 08:55:29 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dw6RR-00074f-Kr for help-gnu-emacs@gnu.org; Sun, 24 Sep 2017 08:55:28 -0400 Original-Received: from [195.159.176.226] (port=46675 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dw6RR-000744-Dp for help-gnu-emacs@gnu.org; Sun, 24 Sep 2017 08:55:25 -0400 Original-Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1dw6RF-0001eI-5J for help-gnu-emacs@gnu.org; Sun, 24 Sep 2017 14:55:13 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 32 Original-X-Complaints-To: usenet@blaine.gmane.org X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 195.159.176.226 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:114384 Archived-At: tomas@tuxteam.de wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Sun, Sep 24, 2017 at 02:20:13PM +0200, Bastian Beischer wrote: >> Hey Neal and Michael >> >> recent versions of "ls" from GNU coreutils have introduced quotes for >> certain filenames (those with spaces, but also others). The "ls" shipped >> with Fedora 26 should be recent enough I think, so it could be the issue. > > Hm. Possible. Here's an extract of ls info: > > ‘--quoting-style=WORD’ > Use style WORD to quote file names and other strings that may > contain arbitrary characters. [...] > > You can specify the default value of the ‘--quoting-style’ option > with the environment variable ‘QUOTING_STYLE’. If that environment > variable is not set, the default value is ‘literal’, but this > default may change to ‘shell’ in a future version of this package. > > Although just changing the default doesn't seem a very friendly thing to > do. > > Cheers Seems that '(dired-listing-switches "-al --literal") fixes my issue, Thanks!