aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMiles Bader2000-08-08 23:53:32 +0000
committerMiles Bader2000-08-08 23:53:32 +0000
commitecfb39ee8e14337d40328c8248c6d27793798025 (patch)
tree74729ec8eeee36d9255fe6bb20c7393067ea30d0 /src
parent565c8641c5fd3717b99c626920ddff6575d300bd (diff)
downloademacs-ecfb39ee8e14337d40328c8248c6d27793798025.tar.gz
emacs-ecfb39ee8e14337d40328c8248c6d27793798025.zip
(Fget_char_property): Update call to overlays_at.
Diffstat (limited to 'src')
-rw-r--r--src/textprop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textprop.c b/src/textprop.c
index a14480bf294..bf4e5efc2b3 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -1,5 +1,5 @@
1/* Interface code for dealing with text properties. 1/* Interface code for dealing with text properties.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999 Free Software Foundation, Inc. 2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -597,7 +597,7 @@ overlays are considered only if they are associated with OBJECT.")
597 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); 597 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
598 598
599 noverlays = overlays_at (posn, 0, &overlay_vec, &len, 599 noverlays = overlays_at (posn, 0, &overlay_vec, &len,
600 &next_overlay, NULL); 600 &next_overlay, NULL, 0);
601 601
602 /* If there are more than 40, 602 /* If there are more than 40,
603 make enough space for all, and try again. */ 603 make enough space for all, and try again. */
@@ -606,7 +606,7 @@ overlays are considered only if they are associated with OBJECT.")
606 len = noverlays; 606 len = noverlays;
607 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object)); 607 overlay_vec = (Lisp_Object *) alloca (len * sizeof (Lisp_Object));
608 noverlays = overlays_at (posn, 0, &overlay_vec, &len, 608 noverlays = overlays_at (posn, 0, &overlay_vec, &len,
609 &next_overlay, NULL); 609 &next_overlay, NULL, 0);
610 } 610 }
611 noverlays = sort_overlays (overlay_vec, noverlays, w); 611 noverlays = sort_overlays (overlay_vec, noverlays, w);
612 612