Function: kmacro-quit-counter-less
kmacro-quit-counter-less is an interactive and byte-compiled function
defined in kmacro.el.gz.
Signature
(kmacro-quit-counter-less &optional ARG)
Documentation
Quit the keyboard macro if the counter is less than ARGS.
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-less (&optional arg)
"Quit the keyboard macro if the counter is less than ARGS.
ARG defaults to zero if nil or omitted."
(interactive "p")
(kmacro-quit-counter #'< arg))