diff options
| author | Miles Bader | 2000-08-10 10:14:15 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-08-10 10:14:15 +0000 |
| commit | 46636545011ff6c7dcbb8b49f84c8dffc6941543 (patch) | |
| tree | 847d7ea464cf4b2e51eb7fc7d750bee9b5cddbc0 | |
| parent | bea56df720fefe48dec35e63dbe358780796fb24 (diff) | |
| download | emacs-46636545011ff6c7dcbb8b49f84c8dffc6941543.tar.gz emacs-46636545011ff6c7dcbb8b49f84c8dffc6941543.zip | |
(note_mouse_highlight): Update calls to overlays_at.
| -rw-r--r-- | src/w32term.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
| 6012 | enough space for all, and try again. */ | 6012 | enough space for all, and try again. */ |
| 6013 | len = 10; | 6013 | len = 10; |
| 6014 | overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); | 6014 | overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); |
| 6015 | noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL); | 6015 | noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL, 0); |
| 6016 | if (noverlays > len) | 6016 | if (noverlays > len) |
| 6017 | { | 6017 | { |
| 6018 | len = noverlays; | 6018 | len = noverlays; |
| 6019 | overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); | 6019 | overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); |
| 6020 | noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL); | 6020 | noverlays = overlays_at (pos, 0, &overlay_vec, &len, NULL, NULL,0); |
| 6021 | } | 6021 | } |
| 6022 | 6022 | ||
| 6023 | noverlays = sort_overlays (overlay_vec, noverlays, w); | 6023 | noverlays = sort_overlays (overlay_vec, noverlays, w); |