branch: externals/consult
commit 73530bab90dae79d6b0ea177b4e935588ea08dd1
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Remove with-delayed-message workaround
---
consult.el | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/consult.el b/consult.el
index c3cdfb7a2c..ea440c1cf8 100644
--- a/consult.el
+++ b/consult.el
@@ -915,10 +915,8 @@ always return an appropriate non-minibuffer window."
"Show delayed MESSAGE if BODY takes too long.
Also temporarily increase the GC limit via `consult--with-increased-gc'."
(declare (indent 1))
- `(let (set-message-function) ;; bug#63253: Broken `with-delayed-message'
- (with-delayed-message (1 ,message)
- (consult--with-increased-gc
- ,@body))))
+ `(with-delayed-message (1 ,message)
+ (consult--with-increased-gc ,@body)))
(defun consult--count-lines (pos)
"Move to position POS and return number of lines."