# HG changeset patch # User Gerd Moellmann # Date 935367102 0 # Node ID f13b05bf590baf9c6bf7a3812c1e205555f5c6b7 # Parent 20d8158841b06227f887398e37f5125d0c2741f7 (struct glyph_matrix): Add buffer, begv, and zv. diff -r 20d8158841b0 -r f13b05bf590b src/dispextern.h --- 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; };