changeset 30699:f886557e4b2a

(Fget_char_property): Update call to overlays_at.
author Miles Bader <miles@gnu.org>
date Tue, 08 Aug 2000 23:53:32 +0000
parents 75ff6aa32bf0
children 730f55a93973
files src/textprop.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);