Variable: feedmail-debug-sit-for
feedmail-debug-sit-for is a customizable variable defined in
feedmail.el.gz.
Value
0
Documentation
Duration of pause after feedmail-debug messages.
After some messages are divulged, it may be helpful to pause before
something else obliterates them. This value controls the duration of
the pause. If the value is nil or 0, the sit-for is not done, which
has the effect of not pausing at all. Debug messages can be seen after
the fact in the messages buffer.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-debug-sit-for 0
"Duration of pause after feedmail-debug messages.
After some messages are divulged, it may be helpful to pause before
something else obliterates them. This value controls the duration of
the pause. If the value is nil or 0, the `sit-for' is not done, which
has the effect of not pausing at all. Debug messages can be seen after
the fact in the messages buffer."
:version "24.1"
:group 'feedmail-debug
:type 'integer
)