aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2004-03-11 11:42:08 +0000
committerKenichi Handa2004-03-11 11:42:08 +0000
commitd834b49367f09260e3dc2b91c08b48ea68013a58 (patch)
tree6d9a65efbf3e83cc8d4e0434eee1b32c3e2fa144 /src
parenteabe04c00f257b287c897d55c3293e050993e3da (diff)
downloademacs-d834b49367f09260e3dc2b91c08b48ea68013a58.tar.gz
emacs-d834b49367f09260e3dc2b91c08b48ea68013a58.zip
(handle_auto_composed_prop): Fix Lisp_Object/int mixup.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
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)
3793 /* As Fnext_single_char_property_change is very slow, we 3793 /* As Fnext_single_char_property_change is very slow, we
3794 limit the search to the current line. */ 3794 limit the search to the current line. */
3795 if (STRINGP (it->string)) 3795 if (STRINGP (it->string))
3796 limit = SCHARS (it->string); 3796 limit = make_number (SCHARS (it->string));
3797 else 3797 else
3798 limit = make_number (find_next_newline_no_quit (pos, 1)); 3798 limit = make_number (find_next_newline_no_quit (pos, 1));
3799 3799