From: Paul Eggert Date: Sat, 18 Jun 2011 05:51:59 +0000 (-0700) Subject: * dispextern.h (struct it.overlay_strings_charpos): EMACS_INT, not int. X-Git-Tag: emacs-pretest-24.0.90~104^2~473^2~61 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e39e811eb8c4058facadcc0beea5565f0ef3bbc2;p=emacs.git * dispextern.h (struct it.overlay_strings_charpos): EMACS_INT, not int. --- diff --git a/src/ChangeLog b/src/ChangeLog index 70bdbeea3b2..79d9b636e09 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2011-06-18 Paul Eggert + + * dispextern.h (struct it.overlay_strings_charpos): EMACS_INT, not int. + 2011-06-17 Paul Eggert * dispextern.h (struct it.selective): Now EMACS_INT, not int. diff --git a/src/dispextern.h b/src/dispextern.h index 774c880fee8..227d5ed58e3 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -2183,7 +2183,7 @@ struct it be set at the same time as n_overlay_strings. It is needed because we show before-strings at the start of invisible text; see handle_invisible_prop in xdisp.c. */ - int overlay_strings_charpos; + EMACS_INT overlay_strings_charpos; /* Vector of overlays to process. Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE at a time. */