From: Richard M. Stallman Date: Thu, 25 Nov 1993 19:38:14 +0000 (+0000) Subject: (quit_throw_to_read_char): X-Git-Tag: emacs-19.34~10673 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0dfcc832b8868981e53078442289d1974b3a7a39;p=emacs.git (quit_throw_to_read_char): Look at internal_last_event_frame only if MULTI_FRAME. --- diff --git a/src/keyboard.c b/src/keyboard.c index 8895c54872c..166b8b54779 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -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); }