aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/image-dired.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/image-dired.el b/lisp/image-dired.el
index c2c2a1476da..dd185ae169f 100644
--- a/lisp/image-dired.el
+++ b/lisp/image-dired.el
@@ -820,7 +820,7 @@ thumbnail buffer to be selected."
820 (if (not append) 820 (if (not append)
821 (erase-buffer) 821 (erase-buffer)
822 (goto-char (point-max))) 822 (goto-char (point-max)))
823 (mapcar 823 (mapc
824 (lambda (curr-file) 824 (lambda (curr-file)
825 (setq thumb-name (image-dired-thumb-name curr-file)) 825 (setq thumb-name (image-dired-thumb-name curr-file))
826 (if (and (not (file-exists-p thumb-name)) 826 (if (and (not (file-exists-p thumb-name))
@@ -918,7 +918,7 @@ is an alist in the following form:
918 (if (stringp files) 918 (if (stringp files)
919 (setq files (list files)) 919 (setq files (list files))
920 (error "Files must be a string or a list of strings!"))) 920 (error "Files must be a string or a list of strings!")))
921 (mapcar 921 (mapc
922 (lambda (file) 922 (lambda (file)
923 (goto-char (point-min)) 923 (goto-char (point-min))
924 (when (search-forward-regexp 924 (when (search-forward-regexp
@@ -2170,7 +2170,7 @@ matching tags will be marked in the dired buffer."
2170 (setq files (append (list (match-string 1)) files))) 2170 (setq files (append (list (match-string 1)) files)))
2171 (kill-buffer buf) 2171 (kill-buffer buf)
2172 ;; Mark files 2172 ;; Mark files
2173 (mapcar 2173 (mapc
2174 ;; I tried using `dired-mark-files-regexp' but it was 2174 ;; I tried using `dired-mark-files-regexp' but it was
2175 ;; waaaay to slow. 2175 ;; waaaay to slow.
2176 (lambda (curr-file) 2176 (lambda (curr-file)