From 313791e017199387994fa14e7fd0e46a8c85b44f Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 18 Jan 2026 14:36:51 +0200 Subject: [PATCH] ; Fix messages in "M-x man" * lisp/man.el (Man-getpage-in-background): Fix message in synchronous case. --- lisp/man.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/man.el b/lisp/man.el index 47301f02a2a..3b59efa0a44 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -1224,7 +1224,11 @@ Return the buffer in which the manpage will appear." (buffer (get-buffer bufname))) (if buffer (Man-notify-when-ready buffer) - (message "Invoking %s %s in the background" manual-program man-args) + (message "Invoking %s %s %s" + manual-program man-args + (if Man-prefer-synchronous-call + "and formatting..." + "in the background")) (setq buffer (generate-new-buffer bufname)) (Man-notify-when-ready buffer) (with-current-buffer buffer