+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
* 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.
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;