summaryrefslogtreecommitdiff
path: root/src/dispextern.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-04-03 21:32:18 +0000
committerRichard M. Stallman <rms@gnu.org>1994-04-03 21:32:18 +0000
commitcb2cd451138b3ce3901a1117c02acad45305040f (patch)
treea8157e1aabad1b96c19257fdd5a7e4cf05f37fa5 /src/dispextern.h
parent3e086c931e29f10534d205b89ce767fb7b30326a (diff)
downloademacs-cb2cd451138b3ce3901a1117c02acad45305040f.tar.gz
Comment changes.
Diffstat (limited to 'src/dispextern.h')
-rw-r--r--src/dispextern.h31
1 files changed, 27 insertions, 4 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index aed0b65de4d..99c9ba97a77 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -119,7 +119,9 @@ struct frame_glyphs
/* highlight[n] != 0 iff line n is highlighted. */
char *highlight;
- /* Buffer offset of this line's first char. */
+ /* Buffer offset of this line's first char.
+ This is not really implemented, and cannot be,
+ and should be deleted. */
int *bufp;
#ifdef HAVE_X_WINDOWS
@@ -137,9 +139,30 @@ struct frame_glyphs
short *max_ascent;
#endif /* HAVE_X_WINDOWS */
- /* A vector indexed by vertical position.
- Each element is a vector indexed by horizontal position
- giving, for each glyph, the buffer position it corresponds to. */
+ /* Mapping of coordinate pairs to buffer positions.
+ This field holds a vector indexed by row number.
+ Its elements are vectors indexed by column number.
+ Each element of these vectors is a buffer position, 0, or -1.
+
+ For a column where the image of a text character starts,
+ the element value is the buffer position of that character.
+ When a window's screen line starts in mid character,
+ the element for the line's first column (at the window's left margin)
+ is that character's position.
+ For successive columns within a multicolumn character,
+ the element is -1.
+ For the column just beyond the last glyph on a line,
+ the element is the buffer position of the end of the line.
+ For following columns within the same window, the element is 0.
+ For rows past the end of the accessible buffer text,
+ the window's first column has ZV and other columns have 0.
+
+ Mode lines and vertical separator lines have 0.
+
+ The column of a window's left margin
+ always has a positive value (a buffer position), not 0 or -1,
+ for each line in that window's interior. */
+
int **charstarts;
/* This holds all the space in the subvectors of the charstarts field. */