diff options
| author | Lars Ingebrigtsen | 2021-01-31 08:46:02 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-01-31 08:46:02 +0100 |
| commit | 5cf9b915fa3557b4cd9e36ef8068d40b68ee485a (patch) | |
| tree | 66fd3d8062ceced7527adc5e5b7b1e152d3cc6fc | |
| parent | d88e12aa19c42ceda39eacfe223c00d24bf31d3d (diff) | |
| download | emacs-5cf9b915fa3557b4cd9e36ef8068d40b68ee485a.tar.gz emacs-5cf9b915fa3557b4cd9e36ef8068d40b68ee485a.zip | |
execute-kbd-macro doc string clarification
* src/macros.c (Fexecute_kbd_macro): Mention that the buffer is
(potentially) changed (bug#37396).
| -rw-r--r-- | src/macros.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/macros.c b/src/macros.c index c8ce94e63b1..60d0766a754 100644 --- a/src/macros.c +++ b/src/macros.c | |||
| @@ -279,7 +279,10 @@ its function definition is used. | |||
| 279 | COUNT is a repeat count, or nil for once, or 0 for infinite loop. | 279 | COUNT is a repeat count, or nil for once, or 0 for infinite loop. |
| 280 | 280 | ||
| 281 | Optional third arg LOOPFUNC may be a function that is called prior to | 281 | Optional third arg LOOPFUNC may be a function that is called prior to |
| 282 | each iteration of the macro. Iteration stops if LOOPFUNC returns nil. */) | 282 | each iteration of the macro. Iteration stops if LOOPFUNC returns nil. |
| 283 | |||
| 284 | The buffer shown in the currently selected window will be made the current | ||
| 285 | buffer before the macro is executed. */) | ||
| 283 | (Lisp_Object macro, Lisp_Object count, Lisp_Object loopfunc) | 286 | (Lisp_Object macro, Lisp_Object count, Lisp_Object loopfunc) |
| 284 | { | 287 | { |
| 285 | Lisp_Object final; | 288 | Lisp_Object final; |