# HG changeset patch # User Bram Moolenaar # Date 1372707788 -7200 # Node ID 6ddc1785c4ff3779c18f5c313da591a052388b2d # Parent 4adcd9575a00eac81396211f07e466ace1725a1d updated for version 7.3.1286 Problem: Check for screen size missing for Athena and Motif. Solution: Add call to limit_screen_size(). diff --git a/src/gui_x11.c b/src/gui_x11.c --- a/src/gui_x11.c +++ b/src/gui_x11.c @@ -1431,6 +1431,7 @@ gui_mch_init() p_window = h - 1; Rows = h; } + limit_screen_size(); /* * Set the (x,y) position of the main window only if specified in the * users geometry, so we get good defaults when they don't. This needs diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1286, +/**/ 1285, /**/ 1284,