Mercurial > emacs
changeset 89867:dd677f4114e6
(handle_auto_composed_prop): Fix Lisp_Object/int mixup.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 11 Mar 2004 11:42:08 +0000 |
parents | 70daf4dac8c0 |
children | 203500dca753 |
files | src/xdisp.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Thu Mar 11 11:41:33 2004 +0000 +++ b/src/xdisp.c Thu Mar 11 11:42:08 2004 +0000 @@ -3793,7 +3793,7 @@ /* As Fnext_single_char_property_change is very slow, we limit the search to the current line. */ if (STRINGP (it->string)) - limit = SCHARS (it->string); + limit = make_number (SCHARS (it->string)); else limit = make_number (find_next_newline_no_quit (pos, 1));