Mercurial > emacs
diff src/syntax.c @ 71739:a5eb5d8b1eca
(Fforward_comment): Revert the reversion.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Sun, 09 Jul 2006 14:19:33 +0000 |
| parents | 60cfbf52270a |
| children | df55df8eb062 |
line wrap: on
line diff
--- a/src/syntax.c Sun Jul 09 11:12:21 2006 +0000 +++ b/src/syntax.c Sun Jul 09 14:19:33 2006 +0000 @@ -1992,16 +1992,16 @@ (count) Lisp_Object count; { - register int from; - int from_byte; - register int stop; + register EMACS_INT from; + EMACS_INT from_byte; + register EMACS_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; - int count1; - int out_charpos, out_bytepos; + EMACS_INT count1; + EMACS_INT out_charpos, out_bytepos; int dummy; CHECK_NUMBER (count);
