diff options
| author | Jim Blandy | 1993-06-30 04:56:29 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-30 04:56:29 +0000 |
| commit | 764cb3f9d25bd879a9af4cabf2d08f7db26052da (patch) | |
| tree | 9a9cb08011d089e5f85237c0db2b2a2c6c58cf93 /src | |
| parent | 600c6e3ad03eda3e658c723531997a31785fc588 (diff) | |
| download | emacs-764cb3f9d25bd879a9af4cabf2d08f7db26052da.tar.gz emacs-764cb3f9d25bd879a9af4cabf2d08f7db26052da.zip | |
* keyboard.c (kbd_buffer_get_event): Correctly generate
switch-frame events when reading mouse motion events.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 52e283ab789..278f0dbb342 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -1937,7 +1937,7 @@ kbd_buffer_get_event () | |||
| 1937 | 1937 | ||
| 1938 | if (! EQ (frame, internal_last_event_frame) | 1938 | if (! EQ (frame, internal_last_event_frame) |
| 1939 | && XFRAME (frame) != selected_frame) | 1939 | && XFRAME (frame) != selected_frame) |
| 1940 | obj = make_lispy_switch_frame (internal_last_event_frame); | 1940 | obj = make_lispy_switch_frame (frame); |
| 1941 | internal_last_event_frame = frame; | 1941 | internal_last_event_frame = frame; |
| 1942 | } | 1942 | } |
| 1943 | #endif | 1943 | #endif |