changeset 99324:cd9c652e34dd

(command_loop_1): Handle NORECORD in call of Fselect_frame (currently ifdefd).
author Martin Rudalics <rudalics@gmx.at>
date Sun, 02 Nov 2008 10:46:21 +0000
parents 2b78c770209e
children 0b73da762ca9
files src/keyboard.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/keyboard.c	Sun Nov 02 10:41:28 2008 +0000
+++ b/src/keyboard.c	Sun Nov 02 10:46:21 2008 +0000
@@ -1601,7 +1601,7 @@
 	 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 @@
   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);
 }