Function: kmacro-call-ring-2nd

kmacro-call-ring-2nd is an interactive and byte-compiled function defined in kmacro.el.gz.

Signature

(kmacro-call-ring-2nd ARG)

Documentation

Execute second keyboard macro in macro ring.

With numeric argument ARG, execute the macro that many times.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/kmacro.el.gz
(defun kmacro-call-ring-2nd (arg)
  "Execute second keyboard macro in macro ring.
With numeric argument ARG, execute the macro that many times."
  (interactive "p")
  (unless (kmacro-ring-empty-p)
    (funcall (car kmacro-ring) arg)))