# HG changeset patch # User Bram Moolenaar # Date 1345721335 -7200 # Node ID f7f68f83fc335379bc9e3371c5118b8f81c8d5bc # Parent e8eff39df4f4e7d0cd7b7fc6c5710211ed758966 updated for version 7.3.635 Problem: Issue 21: System call during startup sets 'lines' to a wrong value. (Karl Yngve) Solution: Don't set the shell size while the GUI is still starting up. (Christian Brabandt) diff --git a/src/ui.c b/src/ui.c --- a/src/ui.c +++ b/src/ui.c @@ -298,6 +298,9 @@ ui_get_shellsize() int retval; #ifdef FEAT_GUI + if (gui.starting) + /* possibly a system call during startup, check later */ + return OK; if (gui.in_use) retval = gui_get_shellsize(); else diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -720,6 +720,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 635, +/**/ 634, /**/ 633,