]> git.eshelyaron.com Git - emacs.git/commitdiff
(scan_sexps_forward): Use EMACS_INT for out_bytepos and
authorAndreas Schwab <schwab@suse.de>
Thu, 13 Jul 2006 11:44:10 +0000 (11:44 +0000)
committerAndreas Schwab <schwab@suse.de>
Thu, 13 Jul 2006 11:44:10 +0000 (11:44 +0000)
out_charpos.

src/ChangeLog
src/syntax.c

index 827abe51c579aa90131c160476bcae030f4f5898..e3cc69c7487d2c930ddeba9526144ee007754000 100644 (file)
@@ -1,3 +1,8 @@
+2006-07-13  Andreas Schwab  <schwab@suse.de>
+
+       * syntax.c (scan_sexps_forward): Use EMACS_INT for out_bytepos and
+       out_charpos.
+
 2006-07-13  Kenichi Handa  <handa@m17n.org>
 
        * editfns.c (Fformat): Fix calculation of text property positions
index 4f1bbb2d6b43ab5f62c59dd846528bf51ce03ad6..9959c17ad4788f3dc05a0a5c984cb74f1b126c0a 100644 (file)
@@ -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;