]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve the execute-kbd-macro doc string
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 14 Mar 2022 11:16:27 +0000 (12:16 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 14 Mar 2022 11:17:24 +0000 (12:17 +0100)
* src/macros.c (Fexecute_kbd_macro): Improve the doc string
(bug#14206).

src/macros.c

index 0447a367fd6f60128599c973cf86cdc398eb8b51..6b6865d92984ecac9d6b1652a0ce12822d0bb704 100644 (file)
@@ -273,9 +273,15 @@ pop_kbd_macro (Lisp_Object info)
 }
 
 DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 3, 0,
-       doc: /* Execute MACRO as string of editor command characters.
-MACRO can also be a vector of keyboard events.  If MACRO is a symbol,
-its function definition is used.
+       doc: /* Execute MACRO as a sequence of events.
+If MACRO is a string or vector, then the events in it are executed
+exactly as if they had been input by the user.
+
+If MACRO is a symbol, its function definition is used.  If that is
+another symbol, this process repeats.  Eventually the result should be
+a string or vector.  If the result is not a symbol, string, or vector,
+an error is signaled.
+
 COUNT is a repeat count, or nil for once, or 0 for infinite loop.
 
 Optional third arg LOOPFUNC may be a function that is called prior to