diff src/term.c @ 92237:ce06567a933d

* dispextern.h (face_at_buffer_position, face_for_overlay_string) (face_at_string_position): * xfaces.c (face_at_buffer_position, face_for_overlay_string) (face_at_string_position): * xdisp.c (display_string, next_overlay_change): * buffer.h (overlays_at): * buffer.c (overlays_at): Use EMACS_INT for buffer positions. Update callers.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 26 Feb 2008 18:18:05 +0000
parents 606f2d163a64
children 4bf10a5a835d
line wrap: on
line diff
--- a/src/term.c	Tue Feb 26 16:36:52 2008 +0000
+++ b/src/term.c	Tue Feb 26 18:18:05 2008 +0000
@@ -2775,7 +2775,7 @@
 		/* Find the range of text around this char that
 		   should be active.  */
 		Lisp_Object before, after;
-		int ignore;
+		EMACS_INT ignore;
 
 
 		before = Foverlay_start (overlay);
@@ -2804,7 +2804,7 @@
 		/* Find the range of text around this char that
 		   should be active.  */
 		Lisp_Object before, after, beginning, end;
-		int ignore;
+		EMACS_INT ignore;
 
 		beginning = Fmarker_position (w->start);
 		XSETINT (end, (BUF_Z (b) - XFASTINT (w->window_end_pos)));