* image-dired.el (image-dired-dired-toggle-marked-thumbs):

Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
(Bug#5270)
This commit is contained in:
Juri Linkov 2010-05-28 22:18:47 +03:00
parent f5783df3a7
commit 0040735a56
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2010-05-28 Juri Linkov <juri@jurta.org>
* image-dired.el (image-dired-dired-toggle-marked-thumbs):
Replace LOCALP arg of `dired-get-filename' 'no-dir with nil.
(Bug#5270)
2010-05-28 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-debug-message): Add `tramp-compat-funcall'

View file

@ -642,7 +642,7 @@ previous -ARG, if ARG<0) files."
(interactive "P")
(dired-map-over-marks
(let* ((image-pos (dired-move-to-filename))
(image-file (dired-get-filename 'no-dir t))
(image-file (dired-get-filename nil t))
thumb-file
overlay)
(when (and image-file (string-match-p (image-file-name-regexp) image-file))