Mercurial > emacs
changeset 39131:544f85c0de57
(string_buffer_position): Use *single_char_property*
functions instead of the *single_property* functions.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 05 Sep 2001 07:43:47 +0000 |
parents | 31fa91a57bb5 |
children | 570be39418f4 |
files | src/xdisp.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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); } }