aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2005-11-11 15:33:34 +0000
committerKim F. Storm2005-11-11 15:33:34 +0000
commitfcc38f6dbea421501d78db607628469ce3acb2fb (patch)
treedecfd0246c5be92e5192d328fd6cbedbd544fbfb
parent310316cfb9ddda9e3febe21fe2c984a50f5e1c29 (diff)
downloademacs-fcc38f6dbea421501d78db607628469ce3acb2fb.tar.gz
emacs-fcc38f6dbea421501d78db607628469ce3acb2fb.zip
(struct it): New member ignore_overlay_strings_at_pos_p.
-rw-r--r--src/dispextern.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 5700a958cd3..f07f761301f 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1979,6 +1979,10 @@ struct it
1979 /* 1 means overlay strings at end_charpos have been processed. */ 1979 /* 1 means overlay strings at end_charpos have been processed. */
1980 unsigned overlay_strings_at_end_processed_p : 1; 1980 unsigned overlay_strings_at_end_processed_p : 1;
1981 1981
1982 /* 1 means to ignore overlay strings at current pos, as they have
1983 already been processed. */
1984 unsigned ignore_overlay_strings_at_pos_p : 1;
1985
1982 /* 1 means the actual glyph is not available in the current 1986 /* 1 means the actual glyph is not available in the current
1983 system. */ 1987 system. */
1984 unsigned glyph_not_available_p : 1; 1988 unsigned glyph_not_available_p : 1;