aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2009-07-05 08:32:26 +0000
committerMichael Albinus2009-07-05 08:32:26 +0000
commitd6ceb380aac43fcb982efd49988da47ef81cfea8 (patch)
treef295ae2b1b99544b4e3dacd948c1a2ed74e3d1af
parentc760f19ee6ebba17cf8b14a071dc6b0dbac8d4a7 (diff)
downloademacs-d6ceb380aac43fcb982efd49988da47ef81cfea8.tar.gz
emacs-d6ceb380aac43fcb982efd49988da47ef81cfea8.zip
* dired-aux.el (dired-show-file-type): Handle remote files.
-rw-r--r--lisp/ChangeLog12
-rw-r--r--lisp/dired-aux.el4
2 files changed, 13 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4cb1536bce3..06ec0060de1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-07-05 Michael Albinus <michael.albinus@gmx.de>
2
3 * dired-aux.el (dired-show-file-type): Handle remote files.
4
12009-03-22 Jari Aalto <jari.aalto@cante.net> 52009-03-22 Jari Aalto <jari.aalto@cante.net>
2 6
3 * desktop.el (desktop-globals-to-save): Add 7 * desktop.el (desktop-globals-to-save): Add
@@ -146,11 +150,17 @@
146 (tramp-default-file-modes) Remove execute permissions. 150 (tramp-default-file-modes) Remove execute permissions.
147 151
148 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method. 152 * net/tramp-gvfs.el (tramp-gvfs-methods): Add "synce" method.
153 (top): Add a default for "synce" in `tramp-default-user-alist'.
154 Add completion function for "synce" method.
155 (tramp-hal-service, tramp-hal-path-manager)
156 (tramp-hal-interface-manager, tramp-hal-interface-device): New
157 defconst.
149 (tramp-gvfs-connection-mounted-p): Handle empty user name for 158 (tramp-gvfs-connection-mounted-p): Handle empty user name for
150 synce. 159 synce.
151 (tramp-synce-list-devices, tramp-synce-parse-device-names): New 160 (tramp-synce-list-devices, tramp-synce-parse-device-names): New
152 defuns. 161 defuns.
153 (top): Add completion function for "synce" method. 162
163 * net/trampver.el: Update release number.
154 164
1552009-06-30 Kenichi Handa <handa@m17n.org> 1652009-06-30 Kenichi Handa <handa@m17n.org>
156 166
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index ffb6f4e9cbf..2e31e9cd90d 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -2429,8 +2429,8 @@ true then the type of the file linked to by FILE is printed instead."
2429 (interactive (list (dired-get-filename t) current-prefix-arg)) 2429 (interactive (list (dired-get-filename t) current-prefix-arg))
2430 (with-temp-buffer 2430 (with-temp-buffer
2431 (if deref-symlinks 2431 (if deref-symlinks
2432 (call-process "file" nil t t "-L" "--" file) 2432 (process-file "file" nil t t "-L" "--" file)
2433 (call-process "file" nil t t "--" file)) 2433 (process-file "file" nil t t "--" file))
2434 (when (bolp) 2434 (when (bolp)
2435 (backward-delete-char 1)) 2435 (backward-delete-char 1))
2436 (message "%s" (buffer-string)))) 2436 (message "%s" (buffer-string))))