aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2018-11-28 16:46:49 +0100
committerMichael Albinus2018-11-28 16:46:49 +0100
commitfebdedfa8d43258edc4e0f2debd3910e073e9326 (patch)
tree4d91a49bf747143744c9d1df1b1946cb81be53ec
parent9b9c70b7dbaa001d2f78a15fd1f3aaa8fce44eef (diff)
downloademacs-febdedfa8d43258edc4e0f2debd3910e073e9326.tar.gz
emacs-febdedfa8d43258edc4e0f2debd3910e073e9326.zip
; Fix an oversight in tramp-smb.el
-rw-r--r--lisp/net/tramp-smb.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-smb.el b/lisp/net/tramp-smb.el
index a49dbbdb39a..d1a922813db 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)."
1801 (if (string-match-p "D" mode) "d" "-") 1801 (if (string-match-p "D" mode) "d" "-")
1802 (mapconcat 1802 (mapconcat
1803 (lambda (_x) "") " " 1803 (lambda (_x) "") " "
1804 (concat "r" (if (string-match "R" mode) "-" "w") "x"))) 1804 (concat "r" (if (string-match-p "R" mode) "-" "w") "x")))
1805 line (substring line 0 -6)) 1805 line (substring line 0 -6))
1806 (cl-return)) 1806 (cl-return))
1807 1807