bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#34614: 26.1.92; When reading input in mini-buffer, message to each a


From: martin rudalics
Subject: bug#34614: 26.1.92; When reading input in mini-buffer, message to each area overide the input prompt
Date: Sat, 23 Feb 2019 08:53:42 +0100

>> minibuffer-message-timeout
>
> On timeout of minibuffer-message-timeout, can emacs trigger a redisplay?

That's what I tried in 'auto-revert-handler':

      (when (and auto-revert-verbose
                 (not (eq revert 'fast)))
        (message "Reverting buffer `%s'." (buffer-name))
        (when (> (minibuffer-depth 0))
          (sit-for minibuffer-message-timeout)
          (message nil)))

But then the message flashes for a short moment here, Emacs redisplays
and switches back to the prompt.  So for some reason 'sit-for' doesn't
work as advertised when Emacs is waiting for input.

martin





reply via email to

[Prev in Thread] Current Thread [Next in Thread]