Mercurial > emacs
changeset 25371:f13b05bf590b
(struct glyph_matrix): Add buffer, begv, and zv.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 23 Aug 1999 00:11:42 +0000 |
parents | 20d8158841b0 |
children | acf281b41a38 |
files | src/dispextern.h |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dispextern.h Mon Aug 23 00:11:40 1999 +0000 +++ b/src/dispextern.h Mon Aug 23 00:11:42 1999 +0000 @@ -464,6 +464,12 @@ /* 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; };