]> git.eshelyaron.com Git - emacs.git/commitdiff
Move utility function to mm-util.el
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 13 Apr 2018 22:15:15 +0000 (00:15 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 13 Apr 2018 22:15:15 +0000 (00:15 +0200)
* lisp/gnus/mm-util.el (mm-images-in-region-p): Move from
mm-decode.el and renamed, since it is generally useful.

lisp/gnus/mm-decode.el
lisp/gnus/mm-util.el

index d8753e5a1d5f4a594c4f28ce861007af4e68f1f5..69fc770ec720b65a9b750e34a49d04e5f850e486 100644 (file)
@@ -1856,7 +1856,7 @@ text/html;\\s-*charset=\\([^\t\n\r \"'>]+\\)[^>]*>" nil t)
         'url-link start end
         :help-echo (get-text-property start 'help-echo)
         :keymap (setq keymap (copy-keymap
-                              (if (mm--images-in-region-p start end)
+                              (if (mm-images-in-region-p start end)
                                   shr-image-map
                                 shr-map)))
         (get-text-property start 'shr-url))
@@ -1874,19 +1874,6 @@ text/html;\\s-*charset=\\([^\t\n\r \"'>]+\\)[^>]*>" nil t)
          (overlay-put overlay 'face nil))
        (setq start end)))))
 
-(defun mm--images-in-region-p (start end)
-  (let ((found nil))
-    (save-excursion
-      (goto-char start)
-      (while (and (not found)
-                 (< (point) end))
-       (let ((display (get-text-property (point) 'display)))
-         (when (and (consp display)
-                    (eq (car display) 'image))
-           (setq found t)))
-       (forward-char 1)))
-    found))
-
 (defun mm-handle-filename (handle)
   "Return filename of HANDLE if any."
   (or (mail-content-type-get (mm-handle-type handle)
index 98f993367ef9a07689240fa507e4755fd16fa68a..42c2f3ab155a4a20d0c9b3846ea56b0b3c51f38b 100644 (file)
@@ -882,6 +882,19 @@ gzip, bzip2, etc. are allowed."
        (when decomp
          (kill-buffer (current-buffer)))))))
 
+(defun mm-images-in-region-p (start end)
+  (let ((found nil))
+    (save-excursion
+      (goto-char start)
+      (while (and (not found)
+                 (< (point) end))
+       (let ((display (get-text-property (point) 'display)))
+         (when (and (consp display)
+                    (eq (car display) 'image))
+           (setq found t)))
+       (forward-char 1)))
+    found))
+
 (provide 'mm-util)
 
 ;;; mm-util.el ends here