Function: blink-cursor--start-timer

blink-cursor--start-timer is a byte-compiled function defined in frame.el.gz.

Signature

(blink-cursor--start-timer)

Documentation

Start the blink-cursor-timer.

Source Code

;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun blink-cursor--start-timer ()
  "Start the `blink-cursor-timer'."
  (when blink-cursor-timer (cancel-timer blink-cursor-timer))
  (setq blink-cursor-timer
        (run-with-timer blink-cursor-interval blink-cursor-interval
                        #'blink-cursor-timer-function)))