aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xterm.c b/src/xterm.c
index b948f042b6a..f272c934043 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -9619,10 +9619,10 @@ x_wm_set_size_hint (f, flags, user_position)
9619 9619
9620 size_hints.width_inc = FRAME_COLUMN_WIDTH (f); 9620 size_hints.width_inc = FRAME_COLUMN_WIDTH (f);
9621 size_hints.height_inc = FRAME_LINE_HEIGHT (f); 9621 size_hints.height_inc = FRAME_LINE_HEIGHT (f);
9622 size_hints.max_width 9622 size_hints.max_width = x_display_pixel_width (FRAME_X_DISPLAY_INFO (f))
9623 = FRAME_X_DISPLAY_INFO (f)->width - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0); 9623 - FRAME_TEXT_COLS_TO_PIXEL_WIDTH (f, 0);
9624 size_hints.max_height 9624 size_hints.max_height = x_display_pixel_height (FRAME_X_DISPLAY_INFO (f))
9625 = FRAME_X_DISPLAY_INFO (f)->height - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0); 9625 - FRAME_TEXT_LINES_TO_PIXEL_HEIGHT (f, 0);
9626 9626
9627 /* Calculate the base and minimum sizes. 9627 /* Calculate the base and minimum sizes.
9628 9628