diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-07-07 16:52:13 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-07-07 16:52:13 +0000 |
commit | dd9f0dcd8f1576b5d59009ffce6526c69a290a7a (patch) | |
tree | 760e699fbc2289636fb0ec99fb5261cc7acf4865 /src/syntax.c | |
parent | 2850984d60887027852b6a10a50070ae9c33affc (diff) | |
download | emacs-dd9f0dcd8f1576b5d59009ffce6526c69a290a7a.tar.gz emacs-dd9f0dcd8f1576b5d59009ffce6526c69a290a7a.tar.bz2 emacs-dd9f0dcd8f1576b5d59009ffce6526c69a290a7a.zip |
(Fforward_comment): Fix int-32 vs EMACS_INT-64 mixup.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/syntax.c b/src/syntax.c index 9af4773a01b..d72fe4636db 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -1992,16 +1992,16 @@ between them, return t; otherwise return nil. */) (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); |