diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-04-03 23:01:45 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-04-03 23:01:45 +0000 |
commit | 4231e11f4303071ca38ec030c761ae3324b52ecb (patch) | |
tree | fef84b6ad2efcd8c497c5b3c63174a3acfedea72 /lisp/kmacro.el | |
parent | 3db6aff67fc535dd38f0bfb25959b8ca3c6c2eb5 (diff) | |
download | emacs-4231e11f4303071ca38ec030c761ae3324b52ecb.tar.gz |
(kmacro-end-and-call-macro): Doc fix.
Diffstat (limited to 'lisp/kmacro.el')
-rw-r--r-- | lisp/kmacro.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/kmacro.el b/lisp/kmacro.el index db7b6b1fe9b..a4cb27f5280 100644 --- a/lisp/kmacro.el +++ b/lisp/kmacro.el @@ -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)) |