diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frame.c b/src/frame.c index 4dd70f00ef7..5dea57aece8 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -3198,9 +3198,9 @@ x_set_frame_parameters (struct frame *f, Lisp_Object alist) | |||
| 3198 | 3198 | ||
| 3199 | XSETFRAME (frame, f); | 3199 | XSETFRAME (frame, f); |
| 3200 | 3200 | ||
| 3201 | if (((width_change && width != FRAME_TEXT_WIDTH (f)) | 3201 | if ((width_change && width != FRAME_TEXT_WIDTH (f)) |
| 3202 | || (height_change && height != FRAME_TEXT_HEIGHT (f))) | 3202 | || (height_change && height != FRAME_TEXT_HEIGHT (f)) |
| 3203 | || f->new_height || f->new_width) | 3203 | || f->new_height || f->new_width) |
| 3204 | { | 3204 | { |
| 3205 | /* If necessary provide default values for HEIGHT and WIDTH. Do | 3205 | /* If necessary provide default values for HEIGHT and WIDTH. Do |
| 3206 | that here since otherwise a size change implied by an | 3206 | that here since otherwise a size change implied by an |