From 0f8b27ea2411963217874dad061734014bb534f2 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 26 Feb 2008 18:18:05 +0000 Subject: * 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. --- src/term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/term.c') diff --git a/src/term.c b/src/term.c index 1613223b97b..6c236d1b636 100644 --- a/src/term.c +++ b/src/term.c @@ -2775,7 +2775,7 @@ term_mouse_highlight (struct frame *f, int x, int y) /* 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 @@ term_mouse_highlight (struct frame *f, int x, int y) /* 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))); -- cgit v1.2.1