From: Miles Bader Date: Thu, 10 Aug 2000 10:14:15 +0000 (+0000) Subject: (note_mouse_highlight): Update calls to overlays_at. X-Git-Tag: emacs-pretest-21.0.90~2372 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=46636545011ff6c7dcbb8b49f84c8dffc6941543;p=emacs.git (note_mouse_highlight): Update calls to overlays_at. --- diff --git a/src/w32term.c b/src/w32term.c index 127354f3461..ba2b14d19ff 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -6012,12 +6012,12 @@ note_mouse_highlight (f, x, 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); } noverlays = sort_overlays (overlay_vec, noverlays, w);