From: Dave Love Date: Wed, 17 Sep 2003 13:53:03 +0000 (+0000) Subject: (adjust_point_for_property): Make beg and end X-Git-Tag: emacs-pretest-23.0.90~8295^2~1834 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2b95772c09e0c06fab7c4c7d66aff93408901d9f;p=emacs.git (adjust_point_for_property): Make beg and end EMACS_INT. --- diff --git a/src/keyboard.c b/src/keyboard.c index 449c8a1b453..133333cd959 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1868,7 +1868,7 @@ adjust_point_for_property (last_pt, modified) int last_pt; int modified; { - int beg, end; + EMACS_INT beg, end; Lisp_Object val, overlay, tmp; int check_composition = 1, check_display = 1, check_invisible = 1; int orig_pt = PT;