Mercurial > emacs
changeset 105276:0c6bc9d2b10c
(tramp-smb-handle-directory-files-and-attributes): Use
tramp-compat-file-attributes rather than nonexistent
tramp-compat-handle-file-attributes.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 29 Sep 2009 02:43:46 +0000 |
parents | b78ceb253d15 |
children | 7f2b90c428b4 |
files | lisp/net/tramp-smb.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/net/tramp-smb.el Tue Sep 29 02:26:20 2009 +0000 +++ b/lisp/net/tramp-smb.el Tue Sep 29 02:43:46 2009 +0000 @@ -323,7 +323,7 @@ "Like `directory-files-and-attributes' for Tramp files." (mapcar (lambda (x) - (cons x (tramp-compat-handle-file-attributes + (cons x (tramp-compat-file-attributes (if full x (expand-file-name x directory)) id-format))) (directory-files directory full match nosort)))