diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-02-26 18:18:05 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-02-26 18:18:05 +0000 |
commit | 0f8b27ea2411963217874dad061734014bb534f2 (patch) | |
tree | 1acdc640b780585a4a1a4ad4ce5c60b3cd1562f2 /src/term.c | |
parent | 575b782f82f1e37a317a5854b0bfe889f5412155 (diff) | |
download | emacs-0f8b27ea2411963217874dad061734014bb534f2.tar.gz |
* 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.
Diffstat (limited to 'src/term.c')
-rw-r--r-- | src/term.c | 4 |
1 files changed, 2 insertions, 2 deletions
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))); |