]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct glyph_matrix): Add member window_left_x.
authorGerd Moellmann <gerd@gnu.org>
Wed, 6 Dec 2000 15:47:10 +0000 (15:47 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 6 Dec 2000 15:47:10 +0000 (15:47 +0000)
src/dispextern.h

index 6c31396d6c4de42229cbfdda70d330620941e348..f3d232c6f503e06252e173f5d4a282a3fa02683f 100644 (file)
@@ -472,11 +472,13 @@ struct glyph_matrix
   /* Width and height of the matrix in columns and rows.  */
   int matrix_w, matrix_h;
 
-  /* If this structure describes a window matrix, window_top_y is the
-     top-most y-position and window_height is the height of the
-     window, and window_vscroll is the vscroll at the time the matrix
-     was last adjusted.  Only set for window-based redisplay.  */
-  int window_top_y, window_height, window_width, window_vscroll;
+  /* If this structure describes a window matrix of window W,
+     window_left_x is the value of W->left, window_top_y the value of
+     W->top, window_height and window_width are width and height of W,
+     as returned by window_box, and window_vscroll is the value of
+     W->vscroll at the time the matrix was last adjusted.  Only set
+     for window-based redisplay.  */
+  int window_left_x, window_top_y, window_height, window_width, window_vscroll;
 
   /* Number of glyphs reserved for left and right marginal areas when
      the matrix was last adjusted.  */