]> git.eshelyaron.com Git - emacs.git/commitdiff
(forw_comment): Also use EMACS_INT for buffer positions.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 11 Jul 2006 13:52:21 +0000 (13:52 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 11 Jul 2006 13:52:21 +0000 (13:52 +0000)
src/ChangeLog
src/syntax.c

index d9f914218e1232e9c16c543f8df1d7793bb88585..8a69f99cc48b75029210b5ac4eb4fd9518932315 100644 (file)
@@ -1,3 +1,7 @@
+2006-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * syntax.c (forw_comment): Also use EMACS_INT for buffer positions.
+
 2006-07-11  Kim F. Storm  <storm@cua.dk>
 
        * dispnew.c (Fredisplay): Add FORCE argument to force redisplay when
@@ -11,8 +15,8 @@
        * dispnew.c (Fredisplay): New function, equivalent to (sit-for 0).
        (Fsit_for): Function deleted.
 
-       * keyboard.c (command_loop_1, Fexecute_extended_command): Call
-       sit_for instead of Fsit_for.
+       * keyboard.c (command_loop_1, Fexecute_extended_command):
+       Call sit_for instead of Fsit_for.
 
        * minibuf.c (temp_echo_area_glyphs): Likewise.
 
index eb37cbb647f5191e1fd49bf5b1b76660529e72af..fe458644caa86da60263f76eab7b712e895d74d3 100644 (file)
@@ -1891,9 +1891,10 @@ in_classes (c, iso_classes)
 static int
 forw_comment (from, from_byte, stop, nesting, style, prev_syntax,
              charpos_ptr, bytepos_ptr, incomment_ptr)
-     int from, from_byte, stop;
+     EMACS_INT from, from_byte, stop;
      int nesting, style, prev_syntax;
-     int *charpos_ptr, *bytepos_ptr, *incomment_ptr;
+     EMACS_INT *charpos_ptr, *bytepos_ptr;
+     int *incomment_ptr;
 {
   register int c, c1;
   register enum syntaxcode code;