# HG changeset patch # User Richard M. Stallman # Date 767664824 0 # Node ID ca5e04c9795c6fc09c1b07e8232a5f9bd09a8e22 # Parent 2d3c771ff861caf17c53bee900264d39cd966f2c (Fx_create_frame): Pass 0 as 3rd arg to x_wm_set_size_hint. (x_figure_window_size): Fix typo setting XNegative. diff -r 2d3c771ff861 -r ca5e04c9795c src/xfns.c --- a/src/xfns.c Fri Apr 29 23:45:17 1994 +0000 +++ b/src/xfns.c Sat Apr 30 00:13:44 1994 +0000 @@ -1648,7 +1648,7 @@ if (f->display.x->top_pos < 0) window_prompting |= YNegative; if (f->display.x->left_pos < 0) - window_prompting |= YNegative; + window_prompting |= XNegative; window_prompting |= USPosition; } else if (! EQ (tem0, Qunbound) || ! EQ (tem1, Qunbound)) @@ -2288,7 +2288,7 @@ /* With the toolkit, the geometry management is done in x_window. */ #ifndef USE_X_TOOLKIT BLOCK_INPUT; - x_wm_set_size_hint (f, window_prompting, 1); + x_wm_set_size_hint (f, window_prompting, 0); UNBLOCK_INPUT; #endif /* USE_X_TOOLKIT */