]> git.eshelyaron.com Git - emacs.git/commitdiff
execute-kbd-macro doc string clarification
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 31 Jan 2021 07:46:02 +0000 (08:46 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 31 Jan 2021 07:46:02 +0000 (08:46 +0100)
* src/macros.c (Fexecute_kbd_macro): Mention that the buffer is
(potentially) changed (bug#37396).

src/macros.c

index c8ce94e63b10342fe767aa4ff2d6691f0b552d60..60d0766a75403818006d2192cba7294d5ae83111 100644 (file)
@@ -279,7 +279,10 @@ its function definition is used.
 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
-each iteration of the macro.  Iteration stops if LOOPFUNC returns nil.  */)
+each iteration of the macro.  Iteration stops if LOOPFUNC returns nil.
+
+The buffer shown in the currently selected window will be made the current
+buffer before the macro is executed.  */)
   (Lisp_Object macro, Lisp_Object count, Lisp_Object loopfunc)
 {
   Lisp_Object final;