Variable: flyspell-delay-use-timer
flyspell-delay-use-timer is a customizable variable defined in
flyspell.el.gz.
Value
nil
Documentation
Whether Flyspell should use a timer for waiting after a delayed command.
If this is non-nil, Flyspell sets up a timer for checking the word at
point flyspell-delay seconds after you invoke a delayed command.
Otherwise, if this option is nil, Flyspell uses sit-for to wait for
that duration instead.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/flyspell.el.gz
(defcustom flyspell-delay-use-timer nil
"Whether Flyspell should use a timer for waiting after a delayed command.
If this is non-nil, Flyspell sets up a timer for checking the word at
point `flyspell-delay' seconds after you invoke a delayed command.
Otherwise, if this option is nil, Flyspell uses `sit-for' to wait for
that duration instead."
:type 'boolean
:version "31.1")