1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Force mode line update after modifying activity string

* rcirc.el (rcirc-update-activity-string): Call force-mode-line-update
This commit is contained in:
Philip Kaludercic 2021-06-16 09:43:05 +02:00
parent b5d935bb7f
commit 21148f67f1

View file

@ -2245,7 +2245,8 @@ activity. Only run if the buffer is not visible and
((not (null (rcirc-process-list)))
"[]")
(t "[]")))
(run-hooks 'rcirc-update-activity-string-hook)))
(run-hooks 'rcirc-update-activity-string-hook)
(force-mode-line-update t)))
(defun rcirc-activity-string (buffers)
"Generate activity string for all BUFFERS."