summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2023-05-14 13:11:04 +0200
committerLeon Rische <leon.rische@me.com>2023-05-14 13:11:04 +0200
commit364172d7fbef6e241724bc32fc241dcbe6379d9c (patch)
tree1671f5d29b7bf1b1c801ccef76365854ab5fb8ad
parent37d2aabcbbdd34a0b13da62fedad59b30d225041 (diff)
Inhibit "Creating LaTeX previews ..." message during review
-rw-r--r--org-fc-core.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/org-fc-core.el b/org-fc-core.el
index e9c6863..50d34f4 100644
--- a/org-fc-core.el
+++ b/org-fc-core.el
@@ -157,7 +157,8 @@ Does not apply to cloze single and cloze enumeration cards."
(defun org-fc-show-latex ()
"Show latex fragments of heading at point."
- (org-latex-preview 4))
+ (let ((inhibit-message t))
+ (org-latex-preview 4)))
(defun org-fc-back-heading-position ()
"Return point at the beginning of an entries 'Back' subheading.