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/msdos.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/msdos.c')
-rw-r--r-- | src/msdos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msdos.c b/src/msdos.c index e015942779f..b5418bab639 100644 --- a/src/msdos.c +++ b/src/msdos.c @@ -1645,7 +1645,7 @@ IT_note_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); after = Foverlay_end (overlay); @@ -1672,7 +1672,7 @@ IT_note_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 (XBUFFER (w->buffer)) |