Function: repeat-exit

repeat-exit is an autoloaded, interactive and byte-compiled function defined in repeat.el.gz.

Signature

(repeat-exit)

Documentation

Exit the repeating sequence.

This function can be used to force exit of repetition while it's active.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/repeat.el.gz
;;;###autoload
(defun repeat-exit ()
  "Exit the repeating sequence.
This function can be used to force exit of repetition while it's active."
  (interactive)
  (setq repeat-in-progress nil)
  (repeat--clear-prev)
  (funcall repeat-echo-function nil))