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:
parent
eabe04c00f
commit
d834b49367
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue