Function: blink-cursor-suspend
blink-cursor-suspend is a byte-compiled function defined in
frame.el.gz.
Signature
(blink-cursor-suspend)
Documentation
Suspend cursor blinking.
This is called when no frame has focus and timers can be suspended.
Timers are restarted by blink-cursor-check, which is called when a
frame receives focus.
Source Code
;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun blink-cursor-suspend ()
"Suspend cursor blinking.
This is called when no frame has focus and timers can be suspended.
Timers are restarted by `blink-cursor-check', which is called when a
frame receives focus."
(blink-cursor-end)
(when blink-cursor-idle-timer
(cancel-timer blink-cursor-idle-timer)
(setq blink-cursor-idle-timer nil)))