From 99cd736442285fb58415b14d58666b5e33d6d61e Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 10 Aug 2000 06:45:57 +0000 Subject: [PATCH] (IT_note_mouse_highlight): Update the calls to overlays_at. (toplevel) : Remove prototype, it's redundant now that keyboard.h is included. --- src/ChangeLog | 7 +++++++ src/msdos.c | 8 +++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 7b169877aa9..a9702326433 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2000-08-10 Eli Zaretskii + + * msdos.c (IT_note_mouse_highlight): Update the calls to + overlays_at. + (toplevel) : Remove prototype, it's + redundant now that keyboard.h is included. + 2000-08-09 Eli Zaretskii * keyboard.c (kbd_buffer_events_waiting): New function. diff --git a/src/msdos.c b/src/msdos.c index 4a8026b4c79..9387f81ad20 100644 --- a/src/msdos.c +++ b/src/msdos.c @@ -1571,12 +1571,13 @@ IT_note_mouse_highlight (struct frame *f, int x, int y) enough space for all, and try again. */ len = 10; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); - noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL); + noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL, 0); if (noverlays > len) { len = noverlays; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); - noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL); + noverlays = overlays_at (pos, + 0, &overlay_vec, &len, NULL, NULL, 0); } /* Sort overlays into increasing priority order. */ @@ -3066,9 +3067,6 @@ and then the scan code.") } /* Get a char from keyboard. Function keys are put into the event queue. */ - -extern void kbd_buffer_store_event (struct input_event *); - static int dos_rawgetc () { -- 2.39.2