changeset 71734:60cfbf52270a

(Fforward_comment): Use type int for `stop', `count1', `out_charpos' and `out_bytepos' too; revert Stef's previous change.
author John Paul Wallington <jpw@pobox.com>
date Sun, 09 Jul 2006 03:31:25 +0000
parents 1326ca5680f2
children 900fce464279
files src/syntax.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);