[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tramp-gvfs: parsing issues when using locale
From: |
Michael Albinus |
Subject: |
Re: tramp-gvfs: parsing issues when using locale |
Date: |
Tue, 20 Oct 2015 09:28:13 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) |
Jürgen Hötzel <address@hidden> writes:
> Hi Michael.
Hi Juergen,
> I have enclosed a patch (nothing ready to merge yet).
I've tested further, and found another error in the patch:
> + ;; ... file mode flags
> + (setq res-filemodes
> + (let ((n (cdr (assoc "unix::mode" attributes))))
> + (if n (tramp-file-mode-from-int
> + (string-to-number (match-string 1)))
> + (if dirp "drwx------" "-rwx------"))))
must be
;; ... file mode flags
(setq res-filemodes
(let ((n (cdr (assoc "unix::mode" attributes))))
(if n (tramp-file-mode-from-int
(string-to-number n))
(if dirp "drwx------" "-rwx------"))))
Best regards, Michael.
- Re: tramp-gvfs: parsing issues when using locale, (continued)
- Re: tramp-gvfs: parsing issues when using locale, Jürgen Hötzel, 2015/10/15
- Re: tramp-gvfs: parsing issues when using locale, Michael Albinus, 2015/10/15
- Re: tramp-gvfs: parsing issues when using locale, Jürgen Hötzel, 2015/10/15
- Re: tramp-gvfs: parsing issues when using locale, Michael Albinus, 2015/10/16
- Re: tramp-gvfs: parsing issues when using locale, Jürgen Hötzel, 2015/10/16
- Re: tramp-gvfs: parsing issues when using locale, Michael Albinus, 2015/10/16
- Re: tramp-gvfs: parsing issues when using locale, Jürgen Hötzel, 2015/10/18
- Re: tramp-gvfs: parsing issues when using locale, Michael Albinus, 2015/10/19
- Re: tramp-gvfs: parsing issues when using locale, Jürgen Hötzel, 2015/10/21
- Re: tramp-gvfs: parsing issues when using locale, Michael Albinus, 2015/10/22
- Re: tramp-gvfs: parsing issues when using locale,
Michael Albinus <=
- Re: tramp-gvfs: parsing issues when using locale, Jürgen Hötzel, 2015/10/20