From ba1a284f80369084c9b14358d1c532f3ff38f0a1 Mon Sep 17 00:00:00 2001 From: Hiraoka Date: Sat, 10 Dec 2022 20:01:20 +0900 Subject: [PATCH] fix: avoid message logging of hit counts --- iigrep.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iigrep.el b/iigrep.el index 0f09668..22978ad 100644 --- a/iigrep.el +++ b/iigrep.el @@ -281,7 +281,8 @@ This value is also used for identification of iigrep processes.") (s (format "%s" hits))) (when (> hits 0) (put-text-property 0 (length s) 'face (iigrep-get-counts-face hits) s) - (message "%s hits" s)))))))) + (let ((message-log-max nil)) + (message "%s hits" s))))))))) (defun iigrep-kill-process () (mapcar (lambda (p) -- 2.11.0