comparison src/gui.c @ 287:77f5bac52921

updated for version 7.0076
author vimboss
date Fri, 27 May 2005 20:16:24 +0000
parents b15976488069
children bf6ee000a80c
comparison
equal deleted inserted replaced
286:f7b66db24758 287:77f5bac52921
3258 * waiting for a character to arrive, quite unpredictably, and may 3258 * waiting for a character to arrive, quite unpredictably, and may
3259 * change Columns and Rows when we don't want it. Wait for a 3259 * change Columns and Rows when we don't want it. Wait for a
3260 * character here to avoid this effect. 3260 * character here to avoid this effect.
3261 * If you remove this, please test this command for resizing 3261 * If you remove this, please test this command for resizing
3262 * effects: ":vsp|q|vsp|q|vsp|q" */ 3262 * effects: ":vsp|q|vsp|q|vsp|q" */
3263 (void)char_avail(); 3263 if (!gui.starting)
3264 (void)char_avail();
3264 Rows = r; 3265 Rows = r;
3265 Columns = c; 3266 Columns = c;
3266 #endif 3267 #endif
3267 } 3268 }
3268 } 3269 }