1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(kmacro-end-and-call-macro): Doc fix.

This commit is contained in:
Richard M. Stallman 2003-04-03 23:01:45 +00:00
parent 3db6aff67f
commit 4231e11f43

View File

@ -665,7 +665,11 @@ With \\[universal-argument], call second macro in macro ring."
;;;###autoload
(defun kmacro-end-and-call-macro (arg &optional no-repeat)
"Call last keyboard macro, ending it first if currently being defined.
With numeric prefix ARG, repeat macro that many times."
With numeric prefix ARG, repeat macro that many times.
Zero argument means repeat until there is an error.
To give a macro a permanent name, so you can call it
even after defining other macros, use \\[name-last-kbd-macro]."
(interactive "P")
(if defining-kbd-macro
(kmacro-end-macro nil))