aboutsummaryrefslogtreecommitdiffstats
path: root/src/xfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-04-30 00:13:44 +0000
committerRichard M. Stallman <[email protected]>1994-04-30 00:13:44 +0000
commit7989f0846613bf3dd8f2107e93e60875d6b2e8e3 (patch)
treecbca2ba539bee0a0bdfa1319741424247d1d8f94 /src/xfns.c
parenta5285df359f6a65c43c73a2ef3cb4fcf9ec49857 (diff)
(Fx_create_frame): Pass 0 as 3rd arg to x_wm_set_size_hint.
(x_figure_window_size): Fix typo setting XNegative.
Diffstat (limited to 'src/xfns.c')
-rw-r--r--src/xfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfns.c b/src/xfns.c
index a56a302a2b..20c82a7958 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1648,7 +1648,7 @@ x_figure_window_size (f, parms)
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 @@ be shared by the new frame.")
/* 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 */