diff src/syntax.c @ 71677:de59660f0a51

(Fforward_comment): Fix int-32 vs EMACS_INT-64 mixup.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 07 Jul 2006 16:52:13 +0000
parents 923b7f99b0d7
children 1326ca5680f2
line wrap: on
line diff
--- a/src/syntax.c	Fri Jul 07 16:38:17 2006 +0000
+++ b/src/syntax.c	Fri Jul 07 16:52:13 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);