Mercurial > emacs
changeset 7209:ca5e04c9795c
(Fx_create_frame): Pass 0 as 3rd arg to x_wm_set_size_hint.
(x_figure_window_size): Fix typo setting XNegative.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 30 Apr 1994 00:13:44 +0000 |
parents | 2d3c771ff861 |
children | 682ff6213c36 |
files | src/xfns.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 */