From: Gerd Moellmann Date: Mon, 23 Aug 1999 00:11:42 +0000 (+0000) Subject: (struct glyph_matrix): Add buffer, begv, and zv. X-Git-Tag: emacs-pretest-21.0.90~7070 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2201e367d8a9cc816dc717d65d103cbdb0380328;p=emacs.git (struct glyph_matrix): Add buffer, begv, and zv. --- diff --git a/src/dispextern.h b/src/dispextern.h index 4194d61db90..a8c02390ccf 100644 --- a/src/dispextern.h +++ b/src/dispextern.h @@ -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; };