diff options
| author | Gerd Moellmann | 2000-12-06 15:47:10 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-12-06 15:47:10 +0000 |
| commit | 6df72db96a0cf94f90068924a41cf8e94b27ca5e (patch) | |
| tree | 8f800d7f0e1b89681ea2ea4072102dd784566ab1 /src | |
| parent | d1c98adf1586e3974d643509f8966081a7282ae4 (diff) | |
| download | emacs-6df72db96a0cf94f90068924a41cf8e94b27ca5e.tar.gz emacs-6df72db96a0cf94f90068924a41cf8e94b27ca5e.zip | |
(struct glyph_matrix): Add member window_left_x.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 6c31396d6c4..f3d232c6f50 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -472,11 +472,13 @@ struct glyph_matrix | |||
| 472 | /* Width and height of the matrix in columns and rows. */ | 472 | /* Width and height of the matrix in columns and rows. */ |
| 473 | int matrix_w, matrix_h; | 473 | int matrix_w, matrix_h; |
| 474 | 474 | ||
| 475 | /* If this structure describes a window matrix, window_top_y is the | 475 | /* If this structure describes a window matrix of window W, |
| 476 | top-most y-position and window_height is the height of the | 476 | window_left_x is the value of W->left, window_top_y the value of |
| 477 | window, and window_vscroll is the vscroll at the time the matrix | 477 | W->top, window_height and window_width are width and height of W, |
| 478 | was last adjusted. Only set for window-based redisplay. */ | 478 | as returned by window_box, and window_vscroll is the value of |
| 479 | int window_top_y, window_height, window_width, window_vscroll; | 479 | W->vscroll at the time the matrix was last adjusted. Only set |
| 480 | for window-based redisplay. */ | ||
| 481 | int window_left_x, window_top_y, window_height, window_width, window_vscroll; | ||
| 480 | 482 | ||
| 481 | /* Number of glyphs reserved for left and right marginal areas when | 483 | /* Number of glyphs reserved for left and right marginal areas when |
| 482 | the matrix was last adjusted. */ | 484 | the matrix was last adjusted. */ |