From 0ec0a610ed226419269f519021cbe8fb2dde2ed5 Mon Sep 17 00:00:00 2001 From: LensPlaysGames Date: Wed, 8 Feb 2023 20:56:48 +0200 Subject: [PATCH] * lisp/iimage.el (iimage-mode-buffer): Handle multiple regexps. Go to the beginning of the buffer before searching every regexp in iimage-mode-image-regex-alist. Copyright-paperwork-exempt: yes --- lisp/iimage.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/iimage.el b/lisp/iimage.el index d7026331440..b4c175a7b63 100644 --- a/lisp/iimage.el +++ b/lisp/iimage.el @@ -118,8 +118,8 @@ Examples of image filename patterns to match: file) (with-silent-modifications (save-excursion - (goto-char (point-min)) (dolist (pair iimage-mode-image-regex-alist) + (goto-char (point-min)) (while (re-search-forward (car pair) nil t) (when (and (setq file (match-string (cdr pair))) (setq file (locate-file file image-path))) -- 2.39.2