From d834b49367f09260e3dc2b91c08b48ea68013a58 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 11 Mar 2004 11:42:08 +0000 Subject: [PATCH] (handle_auto_composed_prop): Fix Lisp_Object/int mixup. --- src/xdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index 7f0ebc57a22..73ab892d170 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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));