Problem: When placing a mark while starting up a screen redraw messes up
the screen. (lith)
Solution: Don't redraw while still starting up. (Christian Brabandt)
doit = TRUE;
}
- /* Return when there is nothing to do or screen updating already
- * happening. */
- if (!doit || updating_screen)
+ /* Return when there is nothing to do, screen updating is already
+ * happening (recursive call) or still starting up. */
+ if (!doit || updating_screen
+#ifdef FEAT_GUI
+ || gui.starting
+#endif
+ || starting)
return;
/* update all windows that need updating */
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 394,
/**/
393,
/**/