Function: blink-cursor-end

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

Signature

(blink-cursor-end)

Documentation

Stop cursor blinking.

This is installed as a pre-command hook by blink-cursor-start. When run, it cancels the timer blink-cursor-timer and removes itself as a pre-command hook.

Source Code

;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun blink-cursor-end ()
  "Stop cursor blinking.
This is installed as a pre-command hook by `blink-cursor-start'.
When run, it cancels the timer `blink-cursor-timer' and removes
itself as a pre-command hook."
  (remove-hook 'pre-command-hook #'blink-cursor-end)
  (internal-show-cursor nil t)
  (when blink-cursor-timer
    (cancel-timer blink-cursor-timer)
    (setq blink-cursor-timer nil)))