aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-02-07 01:06:49 +0000
committerKarl Heuer1995-02-07 01:06:49 +0000
commit4299da2a85a9e45858232963453591eacca07b95 (patch)
treefbac0723f48c5f4087ec4accb44979ce91ee300f
parente6beaa77ad65d53bea6767d960853254812658b6 (diff)
downloademacs-4299da2a85a9e45858232963453591eacca07b95.tar.gz
emacs-4299da2a85a9e45858232963453591eacca07b95.zip
(do_switch_frame): internal_last_event_frame is now in perdisplay.
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index a591f69252d..56694a97b80 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -422,7 +422,7 @@ do_switch_frame (frame, no_enter, track)
422 (select-window (frame-root-window (new-frame))) doesn't end up 422 (select-window (frame-root-window (new-frame))) doesn't end up
423 with your typing being interpreted in the new frame instead of 423 with your typing being interpreted in the new frame instead of
424 the one you're actually typing in. */ 424 the one you're actually typing in. */
425 internal_last_event_frame = Qnil; 425 get_perdisplay (selected_frame)->internal_last_event_frame = Qnil;
426 426
427 return frame; 427 return frame;
428} 428}