emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master febdedf: ; Fix an oversight in tramp-smb.el


From: Michael Albinus
Subject: [Emacs-diffs] master febdedf: ; Fix an oversight in tramp-smb.el
Date: Wed, 28 Nov 2018 10:46:58 -0500 (EST)

branch: master
commit febdedfa8d43258edc4e0f2debd3910e073e9326
Author: Michael Albinus <address@hidden>
Commit: Michael Albinus <address@hidden>

    ; Fix an oversight in tramp-smb.el
---
 lisp/net/tramp-smb.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/net/tramp-smb.el b/lisp/net/tramp-smb.el
index a49dbbd..d1a9228 100644
--- a/lisp/net/tramp-smb.el
+++ b/lisp/net/tramp-smb.el
@@ -1801,7 +1801,7 @@ Result is the list (LOCALNAME MODE SIZE MTIME)."
                    (if (string-match-p "D" mode) "d" "-")
                    (mapconcat
                     (lambda (_x) "") "    "
-                    (concat "r" (if (string-match "R" mode) "-" "w") "x")))
+                    (concat "r" (if (string-match-p "R" mode) "-" "w") "x")))
             line (substring line 0 -6))
          (cl-return))
 



reply via email to

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