aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Ingebrigtsen2014-02-08 17:48:47 -0800
committerLars Ingebrigtsen2014-02-08 17:48:47 -0800
commitfe461220247c321146ee04e6386fde2e909bc006 (patch)
tree5b3e2709811ff681cd29b525b7706e7c22dbb7d4 /src
parent2abd71e50cee30d491910af87c141cd0f1807188 (diff)
downloademacs-fe461220247c321146ee04e6386fde2e909bc006.tar.gz
emacs-fe461220247c321146ee04e6386fde2e909bc006.zip
* macros.c (Fexecute_kbd_macro): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/macros.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7d12cdb5ffc..db24d8c947f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12014-02-09 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * macros.c (Fexecute_kbd_macro): Doc fix (bug#14206).
4
12014-02-08 Lars Ingebrigtsen <larsi@gnus.org> 52014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2 6
3 * syntax.c (Fskip_syntax_backward): Doc clarification (bug#15115). 7 * syntax.c (Fskip_syntax_backward): Doc clarification (bug#15115).
diff --git a/src/macros.c b/src/macros.c
index 19a00afda4e..d0cf3c2c58d 100644
--- a/src/macros.c
+++ b/src/macros.c
@@ -292,7 +292,8 @@ pop_kbd_macro (Lisp_Object info)
292 292
293DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 3, 0, 293DEFUN ("execute-kbd-macro", Fexecute_kbd_macro, Sexecute_kbd_macro, 1, 3, 0,
294 doc: /* Execute MACRO as string of editor command characters. 294 doc: /* Execute MACRO as string of editor command characters.
295If MACRO is a symbol, its function definition is used. 295MACRO can also be a vector of keyboard events. If MACRO is a symbol,
296its function definition is used.
296COUNT is a repeat count, or nil for once, or 0 for infinite loop. 297COUNT is a repeat count, or nil for once, or 0 for infinite loop.
297 298
298Optional third arg LOOPFUNC may be a function that is called prior to 299Optional third arg LOOPFUNC may be a function that is called prior to