aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-07-21 21:08:56 +0000
committerKim F. Storm2004-07-21 21:08:56 +0000
commit71a0ff9a80ffda4ac6ea695460c461bcb6d79687 (patch)
treede656e6d7a735979f1ec83cc9fcb25ecd0eff993
parent7a146de2135db3ed52ce2921289ed48a9eeb2515 (diff)
downloademacs-71a0ff9a80ffda4ac6ea695460c461bcb6d79687.tar.gz
emacs-71a0ff9a80ffda4ac6ea695460c461bcb6d79687.zip
(struct glyph_matrix): New members nrows_scale_factor
and ncols_scale_factor.
-rw-r--r--src/window.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h
index 1e53ae659cb..d8f98444ae9 100644
--- a/src/window.h
+++ b/src/window.h
@@ -236,6 +236,11 @@ struct window
236 struct glyph_matrix *current_matrix; 236 struct glyph_matrix *current_matrix;
237 struct glyph_matrix *desired_matrix; 237 struct glyph_matrix *desired_matrix;
238 238
239 /* Scaling factor for the glyph_matrix size calculation in this window.
240 Used if window contains many small images or uses proportional fonts,
241 as the normal may yield a matrix which is too small. */
242 int nrows_scale_factor, ncols_scale_factor;
243
239 /* Cursor position as of last update that completed without 244 /* Cursor position as of last update that completed without
240 pause. This is the position of last_point. */ 245 pause. This is the position of last_point. */
241 struct cursor_pos last_cursor; 246 struct cursor_pos last_cursor;