* frame.c (x_set_frame_parameters): Fix typo in previous patch.
I had confused && with ||.
This commit is contained in:
parent
5c6476b48a
commit
43a762dae9
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-08-01 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* frame.c (x_set_frame_parameters): Fix typo in previous patch.
|
||||
I had confused && with ||.
|
||||
|
||||
2014-07-31 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Simplify timerfd configuration and fix some minor glitches.
|
||||
|
|
|
@ -3200,7 +3200,7 @@ x_set_frame_parameters (struct frame *f, Lisp_Object alist)
|
|||
|
||||
if (((width_change && width != FRAME_TEXT_WIDTH (f))
|
||||
|| (height_change && height != FRAME_TEXT_HEIGHT (f)))
|
||||
&& (f->new_height || f->new_width))
|
||||
|| 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
|
||||
|
|
Loading…
Add table
Reference in a new issue