diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-09-24 11:49:46 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-09-24 14:07:57 +0200 |
commit | 61b877237baa381430cab554cbd4b4c5838095dc (patch) | |
tree | 681f84e917f87902b2344c5c5f21e26bac3010a2 /lisp/image/image-dired-util.el | |
parent | 06de788529bb385462bc2539443d775328f82341 (diff) | |
download | emacs-61b877237baa381430cab554cbd4b4c5838095dc.tar.gz emacs-61b877237baa381430cab554cbd4b4c5838095dc.tar.bz2 emacs-61b877237baa381430cab554cbd4b4c5838095dc.zip |
Add new macro image-dired--with-dired-buffer
* lisp/image/image-dired-util.el
(image-dired--with-dired-buffer): New macro.
* lisp/image/image-dired.el (image-dired-track-original-file)
(image-dired--on-file-in-dired-buffer)
(image-dired--do-mark-command)
(image-dired--on-file-in-dired-buffer)
(image-dired-jump-original-dired-buffer)
(image-dired-thumb-file-marked-p, image-dired-delete-marked):
Use above new macro to simplify and improve error handling.
(image-dired-show-all-from-dir): Simplify removing Dired marks.
(image-dired-thumb-update-marks): Avoid triggering above new error
handling.
Diffstat (limited to 'lisp/image/image-dired-util.el')
-rw-r--r-- | lisp/image/image-dired-util.el | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lisp/image/image-dired-util.el b/lisp/image/image-dired-util.el index 8d77a97dc47..f8e81d2e8d7 100644 --- a/lisp/image/image-dired-util.el +++ b/lisp/image/image-dired-util.el @@ -118,6 +118,21 @@ See also `image-dired-thumbnail-storage'." "Get associated Dired buffer at point." (get-text-property (point) 'associated-dired-buffer)) +(defmacro image-dired--with-dired-buffer (&rest body) + "Run BODY in associated Dired buffer. +Should be used by commands in `image-dired-thumbnail-mode'." + (declare (indent defun) (debug t)) + (let ((file (make-symbol "file")) + (dired-buf (make-symbol "dired-buf"))) + `(let ((,file (image-dired-original-file-name)) + (,dired-buf (image-dired-associated-dired-buffer))) + (unless ,file + (error "No image at point")) + (unless (and ,dired-buf (buffer-live-p ,dired-buf)) + (error "Cannot find associated Dired buffer for image: %s" ,file)) + (with-current-buffer ,dired-buf + ,@body)))) + (defun image-dired-get-buffer-window (buf) "Return window where buffer BUF is." (get-window-with-predicate |