From 364172d7fbef6e241724bc32fc241dcbe6379d9c Mon Sep 17 00:00:00 2001 From: Leon Rische Date: Sun, 14 May 2023 13:11:04 +0200 Subject: Inhibit "Creating LaTeX previews ..." message during review --- org-fc-core.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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. -- cgit v1.2.3