aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index d793abe9cd4..aed0b65de4d 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -136,6 +136,14 @@ struct frame_glyphs
136 /* Largest font ascent on this line. */ 136 /* Largest font ascent on this line. */
137 short *max_ascent; 137 short *max_ascent;
138#endif /* HAVE_X_WINDOWS */ 138#endif /* HAVE_X_WINDOWS */
139
140 /* A vector indexed by vertical position.
141 Each element is a vector indexed by horizontal position
142 giving, for each glyph, the buffer position it corresponds to. */
143 int **charstarts;
144
145 /* This holds all the space in the subvectors of the charstarts field. */
146 int *total_charstarts;
139 }; 147 };
140 148
141extern void get_display_line (); 149extern void get_display_line ();