# HG changeset patch # User Gerd Moellmann # Date 999675827 0 # Node ID 544f85c0de5757b52c62435813087ad43684784c # Parent 31fa91a57bb582e93597b3ee13dbe77424e4c789 (string_buffer_position): Use *single_char_property* functions instead of the *single_property* functions. diff -r 31fa91a57bb5 -r 544f85c0de57 src/xdisp.c --- a/src/xdisp.c Tue Sep 04 17:42:03 2001 +0000 +++ b/src/xdisp.c Wed Sep 05 07:43:47 2001 +0000 @@ -3227,7 +3227,7 @@ if (!NILP (prop) && display_prop_string_p (prop, string)) found = 1; else - pos = Fnext_single_property_change (pos, Qdisplay, Qnil, limit); + pos = Fnext_single_char_property_change (pos, Qdisplay, Qnil, limit); } if (!found) @@ -3240,8 +3240,8 @@ if (!NILP (prop) && display_prop_string_p (prop, string)) found = 1; else - pos = Fprevious_single_property_change (pos, Qdisplay, Qnil, - limit); + pos = Fprevious_single_char_property_change (pos, Qdisplay, Qnil, + limit); } }