From 575d8075310b8be3c3d302ccbc0361091966c894 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Wed, 17 Sep 2003 13:52:05 +0000 Subject: [PATCH] (handle_composition_prop, check_point_in_composition): Make buffer positions EMACS_INT. --- src/xdisp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xdisp.c b/src/xdisp.c index 762ed45b8a2..b329dece25b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -3814,7 +3814,7 @@ handle_composition_prop (it) struct it *it; { Lisp_Object prop, string; - int pos, pos_byte, end; + EMACS_INT pos, pos_byte, end; enum prop_handled handled = HANDLED_NORMALLY; if (STRINGP (it->string)) @@ -9503,7 +9503,7 @@ check_point_in_composition (prev_buf, prev_pt, buf, pt) struct buffer *prev_buf, *buf; int prev_pt, pt; { - int start, end; + EMACS_INT start, end; Lisp_Object prop; Lisp_Object buffer; -- 2.39.5