aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-04-03 23:01:45 +0000
committerRichard M. Stallman2003-04-03 23:01:45 +0000
commit4231e11f4303071ca38ec030c761ae3324b52ecb (patch)
treefef84b6ad2efcd8c497c5b3c63174a3acfedea72
parent3db6aff67fc535dd38f0bfb25959b8ca3c6c2eb5 (diff)
downloademacs-4231e11f4303071ca38ec030c761ae3324b52ecb.tar.gz
emacs-4231e11f4303071ca38ec030c761ae3324b52ecb.zip
(kmacro-end-and-call-macro): Doc fix.
-rw-r--r--lisp/kmacro.el6
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."
665;;;###autoload 665;;;###autoload
666(defun kmacro-end-and-call-macro (arg &optional no-repeat) 666(defun kmacro-end-and-call-macro (arg &optional no-repeat)
667 "Call last keyboard macro, ending it first if currently being defined. 667 "Call last keyboard macro, ending it first if currently being defined.
668With numeric prefix ARG, repeat macro that many times." 668With numeric prefix ARG, repeat macro that many times.
669Zero argument means repeat until there is an error.
670
671To give a macro a permanent name, so you can call it
672even after defining other macros, use \\[name-last-kbd-macro]."
669 (interactive "P") 673 (interactive "P")
670 (if defining-kbd-macro 674 (if defining-kbd-macro
671 (kmacro-end-macro nil)) 675 (kmacro-end-macro nil))