Variable: kmacro-execute-before-append

kmacro-execute-before-append is a customizable variable defined in kmacro.el.gz.

Value

t

Documentation

Controls whether appending to a macro starts by executing the macro.

If non-nil, using a single C-u (universal-argument) prefix executes the macro before appending, while more than one C-u (universal-argument) prefix does not execute the macro. Otherwise, a single C-u (universal-argument) prefix does not execute the macro, while more than one C-u (universal-argument) prefix causes the macro to be executed before appending to it.

Source Code

;; Defined in /usr/src/emacs/lisp/kmacro.el.gz
(defcustom kmacro-execute-before-append t
  "Controls whether appending to a macro starts by executing the macro.
If non-nil, using a single \\[universal-argument] prefix executes the macro
before appending, while more than one \\[universal-argument] prefix does not
execute the macro.
Otherwise, a single \\[universal-argument] prefix does not execute the
macro, while more than one \\[universal-argument] prefix causes the
macro to be executed before appending to it."
  :type 'boolean)