aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorMartin Rudalics2008-11-02 10:47:42 +0000
committerMartin Rudalics2008-11-02 10:47:42 +0000
commite630dfc6a80f9d21f90fa43bc43bd5e94daeb7ab (patch)
tree995eb67898514fe7e93c993c8ea576e244a40e94 /src/keyboard.c
parentc8938ab6d1bab8e0f96f9475e4a4c79f0a2ce5dc (diff)
downloademacs-e630dfc6a80f9d21f90fa43bc43bd5e94daeb7ab.tar.gz
emacs-e630dfc6a80f9d21f90fa43bc43bd5e94daeb7ab.zip
(command_loop_1): Handle NORECORD in call of
Fselect_frame (currently ifdefd).
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index b6834e97a8f..bac830d692c 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1601,7 +1601,7 @@ command_loop_1 ()
1601 Is this a good idea? */ 1601 Is this a good idea? */
1602 if (FRAMEP (internal_last_event_frame) 1602 if (FRAMEP (internal_last_event_frame)
1603 && !EQ (internal_last_event_frame, selected_frame)) 1603 && !EQ (internal_last_event_frame, selected_frame))
1604 Fselect_frame (internal_last_event_frame); 1604 Fselect_frame (internal_last_event_frame, Qnil);
1605#endif 1605#endif
1606 /* If it has changed current-menubar from previous value, 1606 /* If it has changed current-menubar from previous value,
1607 really recompute the menubar from the value. */ 1607 really recompute the menubar from the value. */
@@ -11098,7 +11098,7 @@ quit_throw_to_read_char ()
11098 if (FRAMEP (internal_last_event_frame) 11098 if (FRAMEP (internal_last_event_frame)
11099 && !EQ (internal_last_event_frame, selected_frame)) 11099 && !EQ (internal_last_event_frame, selected_frame))
11100 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame), 11100 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
11101 0, 0); 11101 0, 0, Qnil);
11102 11102
11103 _longjmp (getcjmp, 1); 11103 _longjmp (getcjmp, 1);
11104} 11104}