summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/net/tramp-adb.el18
2 files changed, 16 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5ec36240b9e..f2c6b569126 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-01-05 Michael Albinus <michael.albinus@gmx.de>
+
+ * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
+ (tramp-adb-handle-directory-files-and-attributes): Fix typos.
+
2013-01-05 Jürgen Hötzel <juergen@archlinux.org>
* net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el
index b555746620a..fd8fdb51796 100644
--- a/lisp/net/tramp-adb.el
+++ b/lisp/net/tramp-adb.el
@@ -325,7 +325,7 @@ pass to the OPERATION."
mod-string
;; fake
t 1
- (tramp-get-device v))
+ (tramp-get-device vec))
file-properties)))
file-properties)))
@@ -335,7 +335,7 @@ pass to the OPERATION."
(when (file-directory-p directory)
(with-parsed-tramp-file-name (expand-file-name directory) nil
(with-tramp-file-property
- v localname (format "directory-files-attributes-%s-%s-%s-s"
+ v localname (format "directory-files-attributes-%s-%s-%s-%s"
full match id-format nosort)
(tramp-adb-barf-unless-okay
v (format "%s -a -l %s"
@@ -343,13 +343,17 @@ pass to the OPERATION."
(tramp-shell-quote-argument localname)) "")
(with-current-buffer (tramp-get-buffer v)
(tramp-adb-sh-fix-ls-output)
- (let ((result (tramp-do-parse-file-attributes-with-ls v (or id-format 'integer))))
+ (let ((result (tramp-do-parse-file-attributes-with-ls
+ v (or id-format 'integer))))
(when full
- (setq result (mapcar
- (lambda (x) (cons (expand-file-name (car x) directory) (cdr x)))
- result)))
+ (setq result
+ (mapcar
+ (lambda (x)
+ (cons (expand-file-name (car x) directory) (cdr x)))
+ result)))
(unless nosort
- (setq result (sort result (lambda (x y) (string< (car x) (car y))))))
+ (setq result
+ (sort result (lambda (x y) (string< (car x) (car y))))))
(delq nil
(mapcar (lambda (x)
(if (or (not match) (string-match match (car x)))