diff options
author | Miles Bader <miles@gnu.org> | 2000-08-08 23:53:32 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2000-08-08 23:53:32 +0000 |
commit | 299fcd06b653c0f05f480864f38e0d147dbdfb98 (patch) | |
tree | dafee590a423092ffc32527d633496f27009783d /src/textprop.c | |
parent | defb93bca8735c51042e40078e87b4f9c8c5be49 (diff) | |
download | emacs-299fcd06b653c0f05f480864f38e0d147dbdfb98.tar.gz |
(Fget_char_property): Update call to overlays_at.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 6 |
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 @@ /* 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 @@ overlays are considered only if they are associated with OBJECT.") 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 @@ overlays are considered only if they are associated with OBJECT.") 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); |