From 5c749f60f0d0b8cbaa5d7afa49646d0600e6d98f Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 5 Mar 2002 18:09:25 +0000 Subject: [PATCH] (sit_for): Don't wait if executing a kbd macro. --- src/dispnew.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispnew.c b/src/dispnew.c index 4f7e36f5c19..43d99b256c9 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -6175,7 +6175,7 @@ sit_for (sec, usec, reading, display, initial_display) swallow_events (display); - if (detect_input_pending_run_timers (display)) + if (detect_input_pending_run_timers (display) || !NILP (Vexecuting_macro)) return Qnil; if (initial_display) -- 2.39.2