(Fforward_comment): Fix int-32 vs EMACS_INT-64 mixup.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* syntax.c (Fforward_comment): Fix int-32 vs EMACS_INT-64 mixup.
|
||||
|
||||
* lread.c (read_filtered_event): Remove `register' qualifier because it
|
||||
causes compilation problem with gcc-4.0.2-20051125 on amd64.
|
||||
(readevalloop): Remove unused var `bpos'.
|
||||
|
||||
10
src/syntax.c
10
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);
|
||||
|
||||
Reference in New Issue
Block a user