aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 93707bca6a9..1d08900079a 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1357,8 +1357,10 @@ x_figure_window_size (f, parms)
1357 window manager prompting. */ 1357 window manager prompting. */
1358 f->width = DEFAULT_COLS; 1358 f->width = DEFAULT_COLS;
1359 f->height = DEFAULT_ROWS; 1359 f->height = DEFAULT_ROWS;
1360 f->display.x->top_pos = 1; 1360 /* Window managers expect that if program-specified
1361 f->display.x->left_pos = 1; 1361 positions are not (0,0), they're intentional, not defaults. */
1362 f->display.x->top_pos = 0;
1363 f->display.x->left_pos = 0;
1362 1364
1363 tem0 = x_get_arg (parms, Qheight, 0, 0, number); 1365 tem0 = x_get_arg (parms, Qheight, 0, 0, number);
1364 tem1 = x_get_arg (parms, Qwidth, 0, 0, number); 1366 tem1 = x_get_arg (parms, Qwidth, 0, 0, number);