Fix progress-reporter-echo-area update-text

* lisp/subr.el (progress-reporter-echo-area): Format UPDATE-TEXT
as a string (bug#81514).
This commit is contained in:
Stéphane Marks 2026-07-29 15:30:45 -04:00 committed by Sean Whitton
parent bc92224c5f
commit a027452c71

View file

@ -7240,7 +7240,7 @@ area is busy with something else."
(unless (and (eq (progress-reporter-context reporter) 'async)
(current-message)
(not (string-prefix-p text (current-message))))
(setq update-text (concat (if update-text " " "") update-text))
(setq update-text (if update-text (format " %s" update-text) ""))
(pcase state
((pred floatp)
(if (plusp state)