aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-14 09:33:49 +0000
committerRichard M. Stallman1994-10-14 09:33:49 +0000
commitbd513d9d322e69c4301d1967be0806050edd81d2 (patch)
treeb651c8b97a494496f2a2ce415911c85bf89c235a /src
parenta2216d64394d4fa6135176787626e0323914e4e3 (diff)
downloademacs-bd513d9d322e69c4301d1967be0806050edd81d2.tar.gz
emacs-bd513d9d322e69c4301d1967be0806050edd81d2.zip
(read_input_waiting): Set e.frame_or_window w/ XSETFRAME.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index e868bc9c499..ac9853a724f 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2319,7 +2319,7 @@ read_input_waiting ()
2319 2319
2320 /* Scan the chars for C-g and store them in kbd_buffer. */ 2320 /* Scan the chars for C-g and store them in kbd_buffer. */
2321 e.kind = ascii_keystroke; 2321 e.kind = ascii_keystroke;
2322 e.frame_or_window = selected_frame; 2322 XSETFRAME (e.frame_or_window, selected_frame);
2323 e.modifiers = 0; 2323 e.modifiers = 0;
2324 for (i = 0; i < nread; i++) 2324 for (i = 0; i < nread; i++)
2325 { 2325 {