diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-21 06:46:02 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-21 06:46:02 +0000 |
commit | 6ad51de2fba6e7883a43e4f4615dc06f191cbbdf (patch) | |
tree | 6c3c93be0ddf754f77fb608af24932c43ec39760 /src/xfaces.c | |
parent | 9a526b2df1ca53b5590fe8aeded80cdc2ed0d59c (diff) | |
download | emacs-6ad51de2fba6e7883a43e4f4615dc06f191cbbdf.tar.gz |
(compute_char_face): Pass new arg to overlays_at.
Diffstat (limited to 'src/xfaces.c')
-rw-r--r-- | src/xfaces.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 33ffb588f4c..265c67bcaad 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -839,7 +839,7 @@ compute_char_face (f, w, pos, region_beg, region_end, endptr, limit, mouse) len = 40; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); - noverlays = overlays_at (pos, 0, &overlay_vec, &len, &next_overlay); + noverlays = overlays_at (pos, 0, &overlay_vec, &len, &next_overlay, NULL); /* If there are more than 40, make enough space for all, and try again. */ @@ -847,7 +847,8 @@ compute_char_face (f, w, pos, region_beg, region_end, endptr, limit, mouse) { len = noverlays; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); - noverlays = overlays_at (pos, 0, &overlay_vec, &len, &next_overlay); + noverlays = overlays_at (pos, 0, &overlay_vec, &len, + &next_overlay, NULL); } if (next_overlay < endpos) |