From 9e006d112839de127c7e48b5c3bd292111b307b0 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sun, 27 Jul 2014 19:44:40 +0200 Subject: [PATCH] org.el (org-ctrl-c-ctrl-c): Don't remove LaTeX fragments overlays * org.el (org-ctrl-c-ctrl-c): Don't remove LaTeX fragments overlays. --- lisp/org.el | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 8c426c944..3e9ce8508 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -20552,11 +20552,9 @@ This command does many different things, depending on context: (interactive "P") (cond ((or (and (boundp 'org-clock-overlays) org-clock-overlays) - org-occur-highlights - org-latex-fragment-image-overlays) + org-occur-highlights) (and (boundp 'org-clock-overlays) (org-clock-remove-overlays)) (org-remove-occur-highlights) - (org-remove-latex-fragment-image-overlays) (message "Temporary highlights/overlays removed from current buffer")) ((and (local-variable-p 'org-finish-function (current-buffer)) (fboundp org-finish-function)) -- 2.11.4.GIT