Mercurial > emacs
changeset 30243:c56062542bae
(display_prop_end, invisible_text_between_p):
Call Fnext_single_char_property_change instead of
next_single_char_property_change.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sat, 15 Jul 2000 15:17:11 +0000 |
parents | 6af73af0f1ef |
children | bfc202f38a22 |
files | src/xdisp.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Sat Jul 15 14:59:26 2000 +0000 +++ b/src/xdisp.c Sat Jul 15 15:17:11 2000 +0000 @@ -2302,8 +2302,8 @@ Lisp_Object end; struct text_pos end_pos; - end = next_single_char_property_change (make_number (CHARPOS (start_pos)), - Qdisplay, object, Qnil); + end = Fnext_single_char_property_change (make_number (CHARPOS (start_pos)), + Qdisplay, object, Qnil); CHARPOS (end_pos) = XFASTINT (end); if (STRINGP (object)) compute_string_pos (&end_pos, start_pos, it->string); @@ -4660,9 +4660,9 @@ invisible_found_p = 1; else { - limit = next_single_char_property_change (make_number (start_charpos), - Qinvisible, Qnil, - make_number (end_charpos)); + limit = Fnext_single_char_property_change (make_number (start_charpos), + Qinvisible, Qnil, + make_number (end_charpos)); invisible_found_p = XFASTINT (limit) < end_charpos; }