1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

(handle_auto_composed_prop): Fix Lisp_Object/int mixup.

This commit is contained in:
Kenichi Handa 2004-03-11 11:42:08 +00:00
parent eabe04c00f
commit d834b49367

View file

@ -3793,7 +3793,7 @@ handle_auto_composed_prop (it)
/* 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));