]> git.eshelyaron.com Git - emacs.git/commitdiff
(last_timer_event): New variable.
authorRichard M. Stallman <rms@gnu.org>
Thu, 28 Mar 1996 18:35:56 +0000 (18:35 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 28 Mar 1996 18:35:56 +0000 (18:35 +0000)
(timer_check): Set that variable.

src/keyboard.c

index 9a30170d18db08e5cb859df5a8d8a8895508640d..15f8eed53cbfa5db5ad975c7b88e8f001d974683 100644 (file)
@@ -2928,6 +2928,9 @@ timer_stop_idle ()
   EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
 }
 
+/* This is only for debugging.  */
+struct input_event last_timer_event;
+
 /* Check whether a timer has fired.  To prevent larger problems we simply
    disregard elements that are not proper timers.  Do not make a circular
    timer list for the time being.
@@ -3122,6 +3125,8 @@ timer_check (do_it_now)
                    = Fcons (Fselected_frame (), chosen_timer);
                  kbd_buffer_store_event (&event);
 
+                 last_timer_event = event;
+
                  /* Tell caller to handle this event right away.  */
                  events_generated = 1;
                  EMACS_SET_SECS (nexttime, 0);