]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fforward_comment): Revert the reversion.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 9 Jul 2006 14:19:33 +0000 (14:19 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 9 Jul 2006 14:19:33 +0000 (14:19 +0000)
src/ChangeLog
src/syntax.c

index 37feab00c68f7e447fd79a493e37a59854998a39..c00e111c66dadc06aa5c23dd3cdf0395c61fed46 100644 (file)
@@ -1,3 +1,7 @@
+2006-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * syntax.c (Fforward_comment): Revert the reversion.
+
 2006-07-09  John Paul Wallington  <jpw@pobox.com>
 
        * syntax.c (Fforward_comment): Revert previous change.
index 9af4773a01b1babd8633479c154d9f0e59d7e6e1..d72fe4636db19425c606dc86ae6359dad35df6cc 100644 (file)
@@ -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);