From: Andreas Schwab Date: Thu, 13 Jul 2006 11:44:10 +0000 (+0000) Subject: (scan_sexps_forward): Use EMACS_INT for out_bytepos and X-Git-Tag: emacs-pretest-22.0.90~1473 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60c86a8342777e0c2f12c5dab3a71b8bcfdc33fb;p=emacs.git (scan_sexps_forward): Use EMACS_INT for out_bytepos and out_charpos. --- diff --git a/src/ChangeLog b/src/ChangeLog index 827abe51c57..e3cc69c7487 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2006-07-13 Andreas Schwab + + * syntax.c (scan_sexps_forward): Use EMACS_INT for out_bytepos and + out_charpos. + 2006-07-13 Kenichi Handa * editfns.c (Fformat): Fix calculation of text property positions diff --git a/src/syntax.c b/src/syntax.c index 4f1bbb2d6b4..9959c17ad47 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -2702,7 +2702,7 @@ scan_sexps_forward (stateptr, from, from_byte, end, targetdepth, int boundary_stop = commentstop == -1; int nofence; int found; - int out_bytepos, out_charpos; + EMACS_INT out_bytepos, out_charpos; int temp; prev_from = from;