aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2022-09-27 02:14:54 +0200
committerStefan Kangas2022-09-27 02:14:54 +0200
commita27e4832131bbc02ab21d0d5febffc5fe6339906 (patch)
treecd314294ad82d727dadb740cce2aa2387268a46e
parent6aaf07bdd5a760089a21d9bb47ae9ab01f398bc4 (diff)
downloademacs-a27e4832131bbc02ab21d0d5febffc5fe6339906.tar.gz
emacs-a27e4832131bbc02ab21d0d5febffc5fe6339906.zip
Fix OBOE in image-dired--with-marked
* lisp/image/image-dired.el (image-dired--with-marked): Fix off-by-one error.
-rw-r--r--lisp/image/image-dired.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/image/image-dired.el b/lisp/image/image-dired.el
index 528348d8d4d..98bb6b3c5a1 100644
--- a/lisp/image/image-dired.el
+++ b/lisp/image/image-dired.el
@@ -469,7 +469,7 @@ thumbnail."
469 (when (image-dired-thumb-file-marked-p) 469 (when (image-dired-thumb-file-marked-p)
470 (setq found t) 470 (setq found t)
471 ,@body) 471 ,@body)
472 (forward-char))) 472 (forward-char 2)))
473 (unless found 473 (unless found
474 ,@body)))) 474 ,@body))))
475 475