diff options
| author | Paul Eggert | 2014-07-31 17:04:52 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-07-31 17:04:52 -0700 |
| commit | 2965dfdda39cf48b1a73598141eeee7646a43651 (patch) | |
| tree | 9aae91ee005e306729c5c4419322f86284537200 /src | |
| parent | 43a762dae9b0d6c6285c0a28cc88b54895912276 (diff) | |
| download | emacs-2965dfdda39cf48b1a73598141eeee7646a43651.tar.gz emacs-2965dfdda39cf48b1a73598141eeee7646a43651.zip | |
Minor style fix to previous patch.
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 |