# HG changeset patch # User John Paul Wallington # Date 1152415885 0 # Node ID 60cfbf52270a2e9819119adfa6903598c2bc6c9f # Parent 1326ca5680f2eb1461ce89eb76117bdd8e857cf6 (Fforward_comment): Use type int for `stop', `count1', `out_charpos' and `out_bytepos' too; revert Stef's previous change. diff -r 1326ca5680f2 -r 60cfbf52270a src/syntax.c --- a/src/syntax.c Sun Jul 09 03:19:16 2006 +0000 +++ b/src/syntax.c Sun Jul 09 03:31:25 2006 +0000 @@ -1994,14 +1994,14 @@ { register int from; int from_byte; - register EMACS_INT stop; + register int stop; register int c, c1; register enum syntaxcode code; int comstyle = 0; /* style of comment encountered */ int comnested = 0; /* whether the comment is nestable or not */ int found; - EMACS_INT count1; - EMACS_INT out_charpos, out_bytepos; + int count1; + int out_charpos, out_bytepos; int dummy; CHECK_NUMBER (count);