From: Miles Bader Date: Sat, 15 Jul 2000 15:17:11 +0000 (+0000) Subject: (display_prop_end, invisible_text_between_p): X-Git-Tag: emacs-pretest-21.0.90~2804 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=016b5642845a800c54fce1129d141785e8acb669;p=emacs.git (display_prop_end, invisible_text_between_p): Call Fnext_single_char_property_change instead of next_single_char_property_change. --- diff --git a/src/xdisp.c b/src/xdisp.c index 1f211b4d002..bdb0d84d3e1 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -2302,8 +2302,8 @@ display_prop_end (it, object, start_pos) 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_text_between_p (it, start_charpos, end_charpos) 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; }