summaryrefslogtreecommitdiff
path: root/lisp/image-dired.el
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2016-12-04 13:43:03 -0500
committerMark Oteiza <mvoteiza@udel.edu>2016-12-04 13:43:03 -0500
commitd3405f8c49e9bc4b9c34c3940962775cb70e4513 (patch)
tree6294a615bc278551f987599a56c81a8d9104c173 /lisp/image-dired.el
parent35a86f0b6fe5634e94212964657c538739743d72 (diff)
downloademacs-d3405f8c49e9bc4b9c34c3940962775cb70e4513.tar.gz
More image-dired refactoring
* lisp/image-dired.el: Remove TODO comment. This appears to have been implemented in 5d7433a "image-dired: Signal an error before calling a missing executable". (image-dired-cmd-create-standard-thumbnail-command): Use %p specifier. Add :version. (image-dired-display-thumbs, image-dired-create-thumbs): Use dolist and when. Remove superfluous call to image-dired-thumb-name. Move single nil binding and setq into dolist form.
Diffstat (limited to 'lisp/image-dired.el')
-rw-r--r--lisp/image-dired.el50
1 files changed, 21 insertions, 29 deletions
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index 09795274cc7..ee5678f9589 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -104,9 +104,6 @@
;; * Some sort of auto-rotate function based on rotate info in the
;; EXIF data.
;;
-;; * Check if exiftool exist before trying to call it to give a better
-;; error message.
-;;
;; * Investigate if it is possible to also write the tags to the image
;; files.
;;
@@ -273,8 +270,7 @@ with the information required by the Thumbnail Managing Standard."
(defcustom image-dired-cmd-create-standard-thumbnail-command
(concat
- image-dired-cmd-create-thumbnail-program " "
- "-size %wx%h \"%f\" "
+ "%p -size %wx%h \"%f\" "
(unless (or image-dired-cmd-pngcrush-program image-dired-cmd-pngnq-program)
(concat
"-set \"Thumb::MTime\" \"%m\" "
@@ -303,6 +299,7 @@ with the information required by the Thumbnail Managing Standard."
"%q %t"
" ; rm %q")))
"Command to create thumbnails according to the Thumbnail Managing Standard."
+ :version "26.1"
:type 'string
:group 'image-dired)
@@ -842,14 +839,13 @@ thumbnail buffer to be selected."
(if (not append)
(erase-buffer)
(goto-char (point-max)))
- (mapc
- (lambda (curr-file)
- (setq thumb-name (image-dired-thumb-name curr-file))
- (if (and (not (file-exists-p thumb-name))
- (not (= 0 (image-dired-create-thumb curr-file thumb-name))))
- (message "Thumb could not be created for file %s" curr-file)
- (image-dired-insert-thumbnail thumb-name curr-file dired-buf)))
- files))
+ (dolist (curr-file files)
+ (setq thumb-name (image-dired-thumb-name curr-file))
+ (when (not (file-exists-p thumb-name))
+ (if (and (not (file-exists-p thumb-name))
+ (not (= 0 (image-dired-create-thumb curr-file thumb-name))))
+ (message "Thumb could not be created for file %s" curr-file)
+ (image-dired-insert-thumbnail thumb-name curr-file dired-buf)))))
(if do-not-pop
(display-buffer buf)
(pop-to-buffer buf))
@@ -1529,22 +1525,18 @@ Note that n, p and <down> and <up> will be hijacked and bound to
With prefix argument ARG, create thumbnails even if they already exist
\(i.e. use this to refresh your thumbnails)."
(interactive "P")
- (let (thumb-name files)
- (setq files (dired-get-marked-files))
- (mapcar
- (lambda (curr-file)
- (setq thumb-name (image-dired-thumb-name curr-file))
- ;; If the user overrides the exist check, we must clear the
- ;; image cache so that if the user wants to display the
- ;; thumbnail, it is not fetched from cache.
- (if arg
- (clear-image-cache))
- (if (or (not (file-exists-p thumb-name))
- arg)
- (if (not (= 0 (image-dired-create-thumb curr-file
- (image-dired-thumb-name curr-file))))
- (error "Thumb could not be created"))))
- files)))
+ (let (thumb-name)
+ (dolist (curr-file (dired-get-marked-files))
+ (setq thumb-name (image-dired-thumb-name curr-file))
+ ;; If the user overrides the exist check, we must clear the
+ ;; image cache so that if the user wants to display the
+ ;; thumbnail, it is not fetched from cache.
+ (if arg
+ (clear-image-cache))
+ (when (or (not (file-exists-p thumb-name))
+ arg)
+ (when (not (= 0 (image-dired-create-thumb curr-file thumb-name)))
+ (error "Thumb could not be created"))))))
(defvar image-dired-slideshow-timer nil
"Slideshow timer.")