From 2965dfdda39cf48b1a73598141eeee7646a43651 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 31 Jul 2014 17:04:52 -0700 Subject: [PATCH] Minor style fix to previous patch. --- src/frame.c | 6 +++--- 1 file 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) XSETFRAME (frame, f); - if (((width_change && width != FRAME_TEXT_WIDTH (f)) - || (height_change && height != FRAME_TEXT_HEIGHT (f))) - || f->new_height || f->new_width) + if ((width_change && width != FRAME_TEXT_WIDTH (f)) + || (height_change && height != FRAME_TEXT_HEIGHT (f)) + || f->new_height || f->new_width) { /* If necessary provide default values for HEIGHT and WIDTH. Do that here since otherwise a size change implied by an -- 2.11.4.GIT