Mercurial > emacs
diff src/msdos.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 | 48b836154530 |
line wrap: on
line diff
--- a/src/msdos.c Tue Feb 26 16:36:52 2008 +0000 +++ b/src/msdos.c Tue Feb 26 18:18:05 2008 +0000 @@ -1645,7 +1645,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); after = Foverlay_end (overlay); @@ -1672,7 +1672,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 (XBUFFER (w->buffer))
