aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-06-17 01:49:35 +0000
committerRichard M. Stallman1995-06-17 01:49:35 +0000
commit719191cf4a69e09103766f77783edc731439aaa2 (patch)
tree9ccc1ebd532b457cd0dcf1420a8527db4998eaaf /src
parent09c8f04d1f9281f2f81a077f3ed14125fbb89232 (diff)
downloademacs-719191cf4a69e09103766f77783edc731439aaa2.tar.gz
emacs-719191cf4a69e09103766f77783edc731439aaa2.zip
(quit_throw_to_read_char): Use do_switch_frame directly.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index f9980310c06..e07d4324e56 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -6546,7 +6546,8 @@ quit_throw_to_read_char ()
6546#ifdef MULTI_FRAME 6546#ifdef MULTI_FRAME
6547 if (FRAMEP (internal_last_event_frame) 6547 if (FRAMEP (internal_last_event_frame)
6548 && XFRAME (internal_last_event_frame) != selected_frame) 6548 && XFRAME (internal_last_event_frame) != selected_frame)
6549 Fhandle_switch_frame (make_lispy_switch_frame (internal_last_event_frame)); 6549 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
6550 Qnil, 0);
6550#endif 6551#endif
6551 6552
6552 _longjmp (getcjmp, 1); 6553 _longjmp (getcjmp, 1);