aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-21 18:57:13 +0000
committerGerd Moellmann2000-08-21 18:57:13 +0000
commitb41653141d3333bdf687e3c27847d8b92effc548 (patch)
tree8e54a517332ce1b257597699f61ecc25fb789400
parent7a912f6340fe1027f32deb356059423fe2a4f687 (diff)
downloademacs-b41653141d3333bdf687e3c27847d8b92effc548.tar.gz
emacs-b41653141d3333bdf687e3c27847d8b92effc548.zip
(w32_read_socket): Change calls to gen_help_event.
-rw-r--r--src/w32term.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/w32term.c b/src/w32term.c
index b1dee9274c6..7d664a6c532 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -7674,8 +7674,9 @@ w32_read_socket (sd, bufp, numchars, expected)
7674 frame = Qnil; 7674 frame = Qnil;
7675 7675
7676 any_help_event_p = 1; 7676 any_help_event_p = 1;
7677 n = gen_help_event (bufp, help_echo, frame, help_echo_window, 7677 n = gen_help_event (bufp, numchars, help_echo, frame,
7678 help_echo_object, help_echo_pos); 7678 help_echo_window, help_echo_object,
7679 help_echo_pos);
7679 bufp += n, count += n, numchars -= n; 7680 bufp += n, count += n, numchars -= n;
7680 } 7681 }
7681 break; 7682 break;
@@ -8001,7 +8002,8 @@ w32_read_socket (sd, bufp, numchars, expected)
8001 int n; 8002 int n;
8002 8003
8003 XSETFRAME (frame, f); 8004 XSETFRAME (frame, f);
8004 n = gen_help_event (bufp, Qnil, frame, Qnil, Qnil, 0); 8005 n = gen_help_event (bufp, numchars, Qnil, frame,
8006 Qnil, Qnil, 0);
8005 bufp += n, count += n, numchars -=n; 8007 bufp += n, count += n, numchars -=n;
8006 } 8008 }
8007 } 8009 }