summaryrefslogtreecommitdiffstats
path: root/src/gui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-05-27 20:16:24 +0000
committerBram Moolenaar <Bram@vim.org>2005-05-27 20:16:24 +0000
commit01a7b9dd06c54d41e63bbf3f826269b4091ac992 (patch)
treebcb202c05bed0bd963b317076f590775e4707ba3 /src/gui.c
parent389cb3eb2569e5eef0456d2425aefa46a84a3fb4 (diff)
updated for version 7.0076
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui.c b/src/gui.c
index 35025776e2..d560c81cbc 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -3260,7 +3260,8 @@ gui_init_which_components(oldval)
* character here to avoid this effect.
* If you remove this, please test this command for resizing
* effects: ":vsp|q|vsp|q|vsp|q" */
- (void)char_avail();
+ if (!gui.starting)
+ (void)char_avail();
Rows = r;
Columns = c;
#endif