# HG changeset patch # User Miles Bader # Date 965778812 0 # Node ID f886557e4b2a6970d38f2155cd0aa2fa73d0ec35 # Parent 75ff6aa32bf085a9640db0f746a0fa1870fdb49f (Fget_char_property): Update call to overlays_at. diff -r 75ff6aa32bf0 -r f886557e4b2a src/textprop.c --- a/src/textprop.c Tue Aug 08 23:51:50 2000 +0000 +++ b/src/textprop.c Tue Aug 08 23:53:32 2000 +0000 @@ -1,5 +1,5 @@ /* Interface code for dealing with text properties. - Copyright (C) 1993, 1994, 1995, 1997, 1999 Free Software Foundation, Inc. + Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -597,7 +597,7 @@ overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); noverlays = overlays_at (posn, 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. */ @@ -606,7 +606,7 @@ len = noverlays; overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); noverlays = overlays_at (posn, 0, &overlay_vec, &len, - &next_overlay, NULL); + &next_overlay, NULL, 0); } noverlays = sort_overlays (overlay_vec, noverlays, w);