diff options
| author | Gerd Moellmann | 1999-08-23 00:11:42 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-08-23 00:11:42 +0000 |
| commit | 2201e367d8a9cc816dc717d65d103cbdb0380328 (patch) | |
| tree | f48eace3e0d43653fd624bcf5212c450214f4edf /src | |
| parent | d9f9a1bc83ddf049666dbdc6ccfdafc340902577 (diff) | |
| download | emacs-2201e367d8a9cc816dc717d65d103cbdb0380328.tar.gz emacs-2201e367d8a9cc816dc717d65d103cbdb0380328.zip | |
(struct glyph_matrix): Add buffer, begv, and zv.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 6 |
1 files changed, 6 insertions, 0 deletions
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 | |||
| 464 | /* A string identifying the method used to display the matrix. */ | 464 | /* A string identifying the method used to display the matrix. */ |
| 465 | char method[512]; | 465 | char method[512]; |
| 466 | #endif | 466 | #endif |
| 467 | |||
| 468 | /* The buffer this matrix displays. Set in redisplay_internal. */ | ||
| 469 | struct buffer *buffer; | ||
| 470 | |||
| 471 | /* Values of BEGV and ZV as of last redisplay. */ | ||
| 472 | int begv, zv; | ||
| 467 | }; | 473 | }; |
| 468 | 474 | ||
| 469 | 475 | ||