diff options
author | Leon Rische <leon.rische@me.com> | 2023-05-14 13:11:04 +0200 |
---|---|---|
committer | Leon Rische <leon.rische@me.com> | 2023-05-14 13:11:04 +0200 |
commit | 364172d7fbef6e241724bc32fc241dcbe6379d9c (patch) | |
tree | 1671f5d29b7bf1b1c801ccef76365854ab5fb8ad | |
parent | 37d2aabcbbdd34a0b13da62fedad59b30d225041 (diff) |
Inhibit "Creating LaTeX previews ..." message during review
-rw-r--r-- | org-fc-core.el | 3 |
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. |