From 0c42220ca025269e39f20191bc3e10d6b55d02ac Mon Sep 17 00:00:00 2001 From: Russell Adams Date: Thu, 20 May 2010 21:45:15 -0400 Subject: [PATCH] org.el (org-remove-inline-images): Call `clear-image-cache'. --- lisp/ChangeLog | 4 ++++ lisp/org.el | 1 + 2 files changed, 5 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 57f46f471..c1f993191 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2010-05-20 Russell Adams + + * org.el (org-remove-inline-images): Call `clear-image-cache'. + 2010-05-20 Bastien Guerry * org-timer.el (org-timer-default-timer): New variable. diff --git a/lisp/org.el b/lisp/org.el index 83d11c3fd..2ff54b60b 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -15723,6 +15723,7 @@ BEG and END default to the buffer boundaries." (defun org-remove-inline-images () "Remove inline display of images." (interactive) + (clear-image-cache) (mapc 'delete-overlay org-inline-image-overlays) (setq org-inline-image-overlays nil))