comparison src/xterm.c @ 31011:bc4608ec8691

(XTread_socket): Change calls to gen_help_event.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 21 Aug 2000 18:58:17 +0000
parents 13c7c5e6cc36
children 6b2ed557e09c
comparison
equal deleted inserted replaced
31010:040345be1d12 31011:bc4608ec8691
9888 { 9888 {
9889 Lisp_Object frame; 9889 Lisp_Object frame;
9890 int n; 9890 int n;
9891 9891
9892 XSETFRAME (frame, f); 9892 XSETFRAME (frame, f);
9893 n = gen_help_event (bufp, Qnil, frame, Qnil, Qnil, 0); 9893 n = gen_help_event (bufp, numchars,
9894 Qnil, frame, Qnil, Qnil, 0);
9894 bufp += n, count += n, numchars -= n; 9895 bufp += n, count += n, numchars -= n;
9895 } 9896 }
9896 9897
9897 #ifdef LESSTIF_VERSION 9898 #ifdef LESSTIF_VERSION
9898 /* Please see the comment at the start of the 9899 /* Please see the comment at the start of the
9976 XSETFRAME (frame, f); 9977 XSETFRAME (frame, f);
9977 else 9978 else
9978 frame = Qnil; 9979 frame = Qnil;
9979 9980
9980 any_help_event_p = 1; 9981 any_help_event_p = 1;
9981 n = gen_help_event (bufp, help_echo, frame, 9982 n = gen_help_event (bufp, numchars, help_echo, frame,
9982 help_echo_window, help_echo_object, 9983 help_echo_window, help_echo_object,
9983 help_echo_pos); 9984 help_echo_pos);
9984 bufp += n, count += n, numchars -= n; 9985 bufp += n, count += n, numchars -= n;
9985 } 9986 }
9986 9987