diff options
author | Martin Rudalics <rudalics@gmx.at> | 2008-11-02 10:47:42 +0000 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2008-11-02 10:47:42 +0000 |
commit | e630dfc6a80f9d21f90fa43bc43bd5e94daeb7ab (patch) | |
tree | 995eb67898514fe7e93c993c8ea576e244a40e94 /src/keyboard.c | |
parent | c8938ab6d1bab8e0f96f9475e4a4c79f0a2ce5dc (diff) | |
download | emacs-e630dfc6a80f9d21f90fa43bc43bd5e94daeb7ab.tar.gz emacs-e630dfc6a80f9d21f90fa43bc43bd5e94daeb7ab.tar.bz2 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.c | 4 |
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 () Is this a good idea? */ if (FRAMEP (internal_last_event_frame) && !EQ (internal_last_event_frame, selected_frame)) - Fselect_frame (internal_last_event_frame); + Fselect_frame (internal_last_event_frame, Qnil); #endif /* If it has changed current-menubar from previous value, really recompute the menubar from the value. */ @@ -11098,7 +11098,7 @@ quit_throw_to_read_char () if (FRAMEP (internal_last_event_frame) && !EQ (internal_last_event_frame, selected_frame)) do_switch_frame (make_lispy_switch_frame (internal_last_event_frame), - 0, 0); + 0, 0, Qnil); _longjmp (getcjmp, 1); } |