Variable: pulse-flag
pulse-flag is a customizable variable defined in pulse.el.gz.
Value
nil
Documentation
Whether to use pulsing for momentary highlighting.
Pulsing involves a bright highlight that slowly shifts to the background color.
If the value is nil, highlight with an unchanging color until a
key is pressed.
If the value is never, do no coloring at all.
Any other value means to do the default pulsing behavior.
If pulse-flag is non-nil, but pulse-available-p is nil, then
this flag is ignored.
Source Code
;; Defined in /usr/src/emacs/lisp/pulse.el.gz
(defcustom pulse-flag (pulse-available-p)
"Whether to use pulsing for momentary highlighting.
Pulsing involves a bright highlight that slowly shifts to the
background color.
If the value is nil, highlight with an unchanging color until a
key is pressed.
If the value is `never', do no coloring at all.
Any other value means to do the default pulsing behavior.
If `pulse-flag' is non-nil, but `pulse-available-p' is nil, then
this flag is ignored."
:group 'pulse
:type '(choice (const :tag "Highlight with unchanging color" nil)
(const :tag "No highlight" never)
(other :tag "Pulse" t)))