diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-22 19:22:27 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-22 19:22:33 +0200 |
commit | 06d7161476255c77defa119fffa842b7abaa0dcb (patch) | |
tree | aca4376ca4f4f2de9ce86461738802d1f18fff80 /lisp/org | |
parent | a0fa6bd5470413ee7a40486aa89d3a0710c4f356 (diff) | |
download | emacs-06d7161476255c77defa119fffa842b7abaa0dcb.tar.gz emacs-06d7161476255c77defa119fffa842b7abaa0dcb.tar.bz2 emacs-06d7161476255c77defa119fffa842b7abaa0dcb.zip |
Fix some no-X build warnings
* lisp/cus-edit.el (fringe-bitmap-p): Autoload.
* lisp/image.el (clear-image-cache): Declare.
* lisp/mouse.el (dnd-begin-file-dram): Autoload.
* lisp/thumbs.el (image-supported-file-p): Declare (bug#57342).
* lisp/mail/rmailmm.el (rmail-mime-set-bulk-data):
* lisp/emacs-lisp/icons.el (icons--create): Avoid warnings on no-X
builds.
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/org-plot.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org/org-plot.el b/lisp/org/org-plot.el index 831c84befcb..1912f6762ae 100644 --- a/lisp/org/org-plot.el +++ b/lisp/org/org-plot.el @@ -621,7 +621,8 @@ manner suitable for prepending to a user-specified script." "Find any overlays for IMG-FILE in the current Org buffer, and refresh them." (dolist (img-overlay org-inline-image-overlays) (when (string= img-file (plist-get (cdr (overlay-get img-overlay 'display)) :file)) - (when (file-exists-p img-file) + (when (and (file-exists-p img-file) + (fboundp 'image-flush)) (image-flush (overlay-get img-overlay 'display)))))) ;;----------------------------------------------------------------------------- |