]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fforward_comment): Use type int for `from' and `from_byte'.
authorJohn Paul Wallington <jpw@pobox.com>
Sun, 9 Jul 2006 03:19:16 +0000 (03:19 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Sun, 9 Jul 2006 03:19:16 +0000 (03:19 +0000)
src/syntax.c

index d72fe4636db19425c606dc86ae6359dad35df6cc..e95557d83aa480afa6a4f398de003cb02df1936e 100644 (file)
@@ -1992,8 +1992,8 @@ between them, return t; otherwise return nil.  */)
      (count)
      Lisp_Object count;
 {
-  register EMACS_INT from;
-  EMACS_INT from_byte;
+  register int from;
+  int from_byte;
   register EMACS_INT stop;
   register int c, c1;
   register enum syntaxcode code;