tramp-devel
[Top][All Lists]
Advanced

[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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]