1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 20:32:00 -08:00

; Fix an oversight in tramp-smb.el

This commit is contained in:
Michael Albinus 2018-11-28 16:46:49 +01:00
parent 9b9c70b7db
commit febdedfa8d

View file

@ -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))