Re: [Emacs] Polling script timing issue in macOS 26

Subject: Re: [Emacs] Polling script timing issue in macOS 26

Date: Sun, 11 Jan 2026 20:13:41 +0900

To: Alexander Adolf, notmuch@notmuchmail.org

Cc:

From: David Bremner


Alexander Adolf <alexander.adolf@condition-alpha.com> writes:

> Hello,
>
> I have recently upgraded to macOS 26. This has caused the "Polling
> mail..." message to no longer be displayed. Only the "Polling
> mail...done" appears in the minibuffer.
>

Maybe using redisplay instead of sit-for? There are no warnings in the
docstring of redisplay, but I guess it might add some flicker or
similar. For what it's worth it seems to work without the call to
redisplay here.

(progn (message "Polling mail... ")
       (redisplay)
       (shell-command "sleep 2")
       (message "Polling mail ... done"))
_______________________________________________
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-leave@notmuchmail.org

Thread: