]> code.delx.au - gnu-emacs/commitdiff
(IT_note_mouse_highlight): Update the calls to overlays_at.
authorEli Zaretskii <eliz@gnu.org>
Thu, 10 Aug 2000 06:45:57 +0000 (06:45 +0000)
committerEli Zaretskii <eliz@gnu.org>
Thu, 10 Aug 2000 06:45:57 +0000 (06:45 +0000)
(toplevel) <kbd_buffer_store_event>: Remove prototype, it's
redundant now that keyboard.h is included.

src/ChangeLog
src/msdos.c

index 7b169877aa9c7829d46b31cae9d414fa03adc594..a9702326433e8d99f0f3eba46a95b1afd56f23ad 100644 (file)
@@ -1,3 +1,10 @@
+2000-08-10  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * msdos.c (IT_note_mouse_highlight): Update the calls to
+       overlays_at.
+       (toplevel) <kbd_buffer_store_event>: Remove prototype, it's
+       redundant now that keyboard.h is included.
+
 2000-08-09  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * keyboard.c (kbd_buffer_events_waiting): New function.
index 4a8026b4c790744549511d3802bae72034e52b72..9387f81ad207a89e79238da5a9be0639fcebbebe 100644 (file)
@@ -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 ()
 {