aboutsummaryrefslogtreecommitdiffstats
path: root/src/macros.c
diff options
context:
space:
mode:
authorPaul Eggert2024-06-04 22:13:47 -0700
committerPaul Eggert2024-06-04 22:16:28 -0700
commit3dcac22dd4225fdec0b97408da38f74de2a77bef (patch)
treec79a8563efbed67aae0bba5d46b628c1e8a5b69b /src/macros.c
parent636461686f1d36388d4523cbb10eb7ec3bbbd63e (diff)
downloademacs-3dcac22dd4225fdec0b97408da38f74de2a77bef.tar.gz
emacs-3dcac22dd4225fdec0b97408da38f74de2a77bef.zip
Spelling fixes
Diffstat (limited to 'src/macros.c')
-rw-r--r--src/macros.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macros.c b/src/macros.c
index 230195d9488..a4df125aafd 100644
--- a/src/macros.c
+++ b/src/macros.c
@@ -343,14 +343,14 @@ buffer before the macro is executed. */)
343 restore Vexecuting_kbd_macro and executing_kbd_macro_index, and 343 restore Vexecuting_kbd_macro and executing_kbd_macro_index, and
344 run 'kbd-macro-termination-hook'. 344 run 'kbd-macro-termination-hook'.
345 345
346 If read_char happens to be called at the end of a macro interation, 346 If read_char happens to be called at the end of a macro iteration,
347 but before read_key_sequence could handle the end (e.g., when lisp 347 but before read_key_sequence could handle the end (e.g., when lisp
348 code calls 'read-event', 'read-char', or 'read-char-exclusive'), 348 code calls 'read-event', 'read-char', or 'read-char-exclusive'),
349 read_char will simply continue reading other available input 349 read_char will simply continue reading other available input
350 (Bug#68272). Vexecuting_kbd_macro and executing_kbd_macro remain 350 (Bug#68272). Vexecuting_kbd_macro and executing_kbd_macro remain
351 untouched until the end of the iteration is handled. 351 untouched until the end of the iteration is handled.
352 352
353 This is similar (in observable behavior) to a posibly simpler 353 This is similar (in observable behavior) to a possibly simpler
354 implementation of keyboard macros in which this function pushed all 354 implementation of keyboard macros in which this function pushed all
355 characters of the macro into the incoming event queue and returned 355 characters of the macro into the incoming event queue and returned
356 immediately. Maybe this is the implementation that we ideally 356 immediately. Maybe this is the implementation that we ideally