From 565c8641c5fd3717b99c626920ddff6575d300bd Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 8 Aug 2000 23:51:50 +0000 Subject: [PATCH] (face_at_buffer_position): Update call to overlays_at. --- src/xfaces.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xfaces.c b/src/xfaces.c index 9383555b434..65aa4c7f20a 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -1,5 +1,5 @@ /* xfaces.c -- "Face" primitives. - Copyright (C) 1993, 1994, 1998, 1999 Free Software Foundation. + Copyright (C) 1993, 1994, 1998, 1999, 2000 Free Software Foundation. This file is part of GNU Emacs. @@ -6350,7 +6350,7 @@ face_at_buffer_position (w, pos, region_beg, region_end, len = 40; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); noverlays = overlays_at (pos, 0, &overlay_vec, &len, - &next_overlay, NULL); + &next_overlay, NULL, 0); /* If there are more than 40, make enough space for all, and try again. */ @@ -6359,7 +6359,7 @@ face_at_buffer_position (w, pos, region_beg, region_end, len = noverlays; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); noverlays = overlays_at (pos, 0, &overlay_vec, &len, - &next_overlay, NULL); + &next_overlay, NULL, 0); } if (next_overlay < endpos) -- 2.39.2