diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-12-13 10:27:36 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-12-13 10:27:36 -0500 |
commit | f49d1f52b2e368ef67dcfececd426de958548f4e (patch) | |
tree | ce24ced92f2acc976daf4b69e3634c8bd600e44e /src/dispextern.h | |
parent | 07176b2a9e63a0d3933b167f987475d8a18da5cc (diff) | |
parent | 11aad4e9f9f54ce8e9ecc66347e512b20a3cdf39 (diff) | |
download | emacs-f49d1f52b2e368ef67dcfececd426de958548f4e.tar.gz |
Merge from emacs-23
Diffstat (limited to 'src/dispextern.h')
-rw-r--r-- | src/dispextern.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 7426c03b5ec..27d3c1583ca 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -2178,6 +2178,12 @@ struct it OVERLAY_STRING_CHUNK_SIZE. */ int n_overlay_strings; + /* The charpos where n_overlay_strings was calculated. This should + 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; + /* Vector of overlays to process. Overlay strings are processed OVERLAY_STRING_CHUNK_SIZE at a time. */ #define OVERLAY_STRING_CHUNK_SIZE 16 |