summaryrefslogtreecommitdiff
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorMartin Rudalics <rudalics@gmx.at>2008-11-02 10:47:42 +0000
committerMartin Rudalics <rudalics@gmx.at>2008-11-02 10:47:42 +0000
commite630dfc6a80f9d21f90fa43bc43bd5e94daeb7ab (patch)
tree995eb67898514fe7e93c993c8ea576e244a40e94 /src/keyboard.c
parentc8938ab6d1bab8e0f96f9475e4a4c79f0a2ce5dc (diff)
downloademacs-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.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 ()
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);
}