diff options
| author | Kim F. Storm | 2004-07-21 21:08:45 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-07-21 21:08:45 +0000 |
| commit | 7a146de2135db3ed52ce2921289ed48a9eeb2515 (patch) | |
| tree | a7c525a4cd1c0b7180c89190f6460630c628d5da /src | |
| parent | cc834cf99b2d93c4552e92a105de151f3ff2b6e0 (diff) | |
| download | emacs-7a146de2135db3ed52ce2921289ed48a9eeb2515.tar.gz emacs-7a146de2135db3ed52ce2921289ed48a9eeb2515.zip | |
(make_window): Initialize nrows_scale_factor and
ncols_scale_factor members.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c index 98efddd446e..5aafd8a741a 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -260,6 +260,7 @@ make_window () | |||
| 260 | bzero (&p->last_cursor, sizeof (p->last_cursor)); | 260 | bzero (&p->last_cursor, sizeof (p->last_cursor)); |
| 261 | bzero (&p->phys_cursor, sizeof (p->phys_cursor)); | 261 | bzero (&p->phys_cursor, sizeof (p->phys_cursor)); |
| 262 | p->desired_matrix = p->current_matrix = 0; | 262 | p->desired_matrix = p->current_matrix = 0; |
| 263 | p->nrows_scale_factor = p->ncols_scale_factor = 1; | ||
| 263 | p->phys_cursor_type = -1; | 264 | p->phys_cursor_type = -1; |
| 264 | p->phys_cursor_width = -1; | 265 | p->phys_cursor_width = -1; |
| 265 | p->must_be_updated_p = 0; | 266 | p->must_be_updated_p = 0; |