Function: org--inline-image-overlays

org--inline-image-overlays is a byte-compiled function defined in org.el.gz.

Signature

(org--inline-image-overlays &optional BEG END)

Documentation

Return image overlays between BEG and END.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org--inline-image-overlays (&optional beg end)
  "Return image overlays between BEG and END."
  (let* ((beg (or beg (point-min)))
         (end (or end (point-max)))
         (overlays (overlays-in beg end))
         result)
    (dolist (ov overlays result)
      (when (memq ov org-inline-image-overlays)
        (push ov result)))))