Function: kmacro-quit-counter-greater

kmacro-quit-counter-greater is an interactive and byte-compiled function defined in kmacro.el.gz.

Signature

(kmacro-quit-counter-greater &optional ARG)

Documentation

Quit the keyboard macro if the counter is greater than ARG.

ARG defaults to zero if nil or omitted.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/kmacro.el.gz
(defun kmacro-quit-counter-greater (&optional arg)
  "Quit the keyboard macro if the counter is greater than ARG.
ARG defaults to zero if nil or omitted."
  (interactive "p")
  (kmacro-quit-counter #'> arg))