]> git.eshelyaron.com Git - emacs.git/commitdiff
(quit_throw_to_read_char):
authorRichard M. Stallman <rms@gnu.org>
Thu, 25 Nov 1993 19:38:14 +0000 (19:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 25 Nov 1993 19:38:14 +0000 (19:38 +0000)
Look at internal_last_event_frame only if MULTI_FRAME.

src/keyboard.c

index 8895c54872c798282807f944eb74b6f9a2473e4f..166b8b5477967d857f6e3550f330a763d15424af 100644 (file)
@@ -5021,8 +5021,10 @@ quit_throw_to_read_char ()
   if (poll_suppress_count == 0)
     abort ();
 #endif
+#ifdef MULTI_FRAME
   if (XFRAME (internal_last_event_frame) != selected_frame)
     Fhandle_switch_frame (make_lispy_switch_frame (internal_last_event_frame));
+#endif
 
   _longjmp (getcjmp, 1);
 }