[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/jinx ef5dd1625c: Emacs bug: with-delayed-message is bro
From: |
ELPA Syncer |
Subject: |
[elpa] externals/jinx ef5dd1625c: Emacs bug: with-delayed-message is broken |
Date: |
Thu, 20 Apr 2023 04:58:26 -0400 (EDT) |
branch: externals/jinx
commit ef5dd1625cc3ddd7c2345c9ce49d7f82be681c3b
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>
Emacs bug: with-delayed-message is broken
cc @monnier
---
jinx.el | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/jinx.el b/jinx.el
index 56beef633d..8002dc381c 100644
--- a/jinx.el
+++ b/jinx.el
@@ -335,9 +335,11 @@ FLAG must be t or nil."
(defun jinx--force-check-region (start end)
"Enforce spell-check of region between START and END."
- (with-delayed-message (1 "Fontifying...")
+ ;; FIXME `with-delayed-message' is broken in combination with
+ ;; `inhibit-message'. Report this as a bug.
+ (progn ;; with-delayed-message (1 "Fontifying...")
(jit-lock-fontify-now))
- (with-delayed-message (1 "Checking...")
+ (progn ;; with-delayed-message (1 "Checking...")
(jinx--check-region start end)))
(defun jinx--check-region (start end &optional retry)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [elpa] externals/jinx ef5dd1625c: Emacs bug: with-delayed-message is broken,
ELPA Syncer <=