1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-01 03:11:09 -08:00

(forw_comment): Also use EMACS_INT for buffer positions.

This commit is contained in:
Stefan Monnier 2006-07-11 13:52:21 +00:00
parent 5f7c79f929
commit a0aa7fcfd8
2 changed files with 9 additions and 4 deletions

View 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.

View 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;