aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-06-17 22:51:59 -0700
committerPaul Eggert2011-06-17 22:51:59 -0700
commite39e811eb8c4058facadcc0beea5565f0ef3bbc2 (patch)
tree410f3b843356c6cd3ec436bf1e697d98540724a5 /src
parent87830974757826249b19187e645d4965ea084273 (diff)
downloademacs-e39e811eb8c4058facadcc0beea5565f0ef3bbc2.tar.gz
emacs-e39e811eb8c4058facadcc0beea5565f0ef3bbc2.zip
* dispextern.h (struct it.overlay_strings_charpos): EMACS_INT, not int.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/dispextern.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 70bdbeea3b2..79d9b636e09 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12011-06-18 Paul Eggert <eggert@cs.ucla.edu>
2
3 * dispextern.h (struct it.overlay_strings_charpos): EMACS_INT, not int.
4
12011-06-17 Paul Eggert <eggert@cs.ucla.edu> 52011-06-17 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 * dispextern.h (struct it.selective): Now EMACS_INT, not int. 7 * 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
2183 be set at the same time as n_overlay_strings. It is needed 2183 be set at the same time as n_overlay_strings. It is needed
2184 because we show before-strings at the start of invisible text; 2184 because we show before-strings at the start of invisible text;
2185 see handle_invisible_prop in xdisp.c. */ 2185 see handle_invisible_prop in xdisp.c. */
2186 int overlay_strings_charpos; 2186 EMACS_INT overlay_strings_charpos;
2187 2187
2188 /* Vector of overlays to process. Overlay strings are processed 2188 /* Vector of overlays to process. Overlay strings are processed
2189 OVERLAY_STRING_CHUNK_SIZE at a time. */ 2189 OVERLAY_STRING_CHUNK_SIZE at a time. */