]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fforward_comment): Use type int for `stop', `count1', `out_charpos'
authorJohn Paul Wallington <jpw@pobox.com>
Sun, 9 Jul 2006 03:33:14 +0000 (03:33 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Sun, 9 Jul 2006 03:33:14 +0000 (03:33 +0000)
and `out_bytepos' too; revert Stef's previous change.

src/ChangeLog
src/syntax.c

index 2192ee1faf7e464dfba42b0d7d97a02f9ede3f23..37feab00c68f7e447fd79a493e37a59854998a39 100644 (file)
@@ -1,3 +1,7 @@
+2006-07-09  John Paul Wallington  <jpw@pobox.com>
+
+       * syntax.c (Fforward_comment): Revert previous change.
+
 2006-07-09  Kim F. Storm  <storm@cua.dk>
 
        * window.c (Fforce_window_update): Doc fix.
index e95557d83aa480afa6a4f398de003cb02df1936e..9af4773a01b1babd8633479c154d9f0e59d7e6e1 100644 (file)
@@ -1994,14 +1994,14 @@ between them, return t; otherwise return nil.  */)
 {
   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);