From: Miles Bader Date: Tue, 8 Aug 2000 23:56:29 +0000 (+0000) Subject: (note_mouse_highlight): Update call to overlays_at. X-Git-Tag: emacs-pretest-21.0.90~2397 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc5920367e8f641c70ff0dab2125dc8979771a9c;p=emacs.git (note_mouse_highlight): Update call to overlays_at. --- diff --git a/src/xterm.c b/src/xterm.c index 391fd0f8ee1..dbd4a3d2068 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -6525,12 +6525,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); } /* Sort overlays into increasing priority order. */