1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 15:21:51 -08:00

(struct glyph_matrix): Add buffer, begv, and zv.

This commit is contained in:
Gerd Moellmann 1999-08-23 00:11:42 +00:00
parent d9f9a1bc83
commit 2201e367d8

View file

@ -464,6 +464,12 @@ struct glyph_matrix
/* A string identifying the method used to display the matrix. */
char method[512];
#endif
/* The buffer this matrix displays. Set in redisplay_internal. */
struct buffer *buffer;
/* Values of BEGV and ZV as of last redisplay. */
int begv, zv;
};