1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

* macros.c (Fexecute_kbd_macro): Doc fix.

This commit is contained in:
Lars Ingebrigtsen 2014-02-08 17:48:47 -08:00
parent 2abd71e50c
commit fe46122024
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
* macros.c (Fexecute_kbd_macro): Doc fix (bug#14206).
2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
* syntax.c (Fskip_syntax_backward): Doc clarification (bug#15115). * syntax.c (Fskip_syntax_backward): Doc clarification (bug#15115).

View File

@ -292,7 +292,8 @@ pop_kbd_macro (Lisp_Object info)
DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 3, 0, DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 3, 0,
doc: /* Execute MACRO as string of editor command characters. doc: /* Execute MACRO as string of editor command characters.
If MACRO is a symbol, its function definition is used. MACRO can also be a vector of keyboard events. If MACRO is a symbol,
its function definition is used.
COUNT is a repeat count, or nil for once, or 0 for infinite loop. 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 Optional third arg LOOPFUNC may be a function that is called prior to