diff options
| author | Miles Bader | 2000-08-08 23:56:29 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-08-08 23:56:29 +0000 |
| commit | bc5920367e8f641c70ff0dab2125dc8979771a9c (patch) | |
| tree | c6e6fab2566d423c59ba63fb31c94aea171d5a58 /src | |
| parent | ecfb39ee8e14337d40328c8248c6d27793798025 (diff) | |
| download | emacs-bc5920367e8f641c70ff0dab2125dc8979771a9c.tar.gz emacs-bc5920367e8f641c70ff0dab2125dc8979771a9c.zip | |
(note_mouse_highlight): Update call to overlays_at.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
| 6525 | enough space for all, and try again. */ | 6525 | enough space for all, and try again. */ |
| 6526 | len = 10; | 6526 | len = 10; |
| 6527 | overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); | 6527 | overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); |
| 6528 | noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL); | 6528 | noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL, 0); |
| 6529 | if (noverlays > len) | 6529 | if (noverlays > len) |
| 6530 | { | 6530 | { |
| 6531 | len = noverlays; | 6531 | len = noverlays; |
| 6532 | overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); | 6532 | overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); |
| 6533 | noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL); | 6533 | noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL,0); |
| 6534 | } | 6534 | } |
| 6535 | 6535 | ||
| 6536 | /* Sort overlays into increasing priority order. */ | 6536 | /* Sort overlays into increasing priority order. */ |