Problem: Using a NULL pointer when using feedkeys() to trigger drawing a
tabline.
Solution: Skip drawing a tabline if TabPageIdxs is NULL. (Dominique Pelle)
Also fix recursing into getcmdline() from the cmd window.
/*
* Open a window to edit the command line (and history).
*/
+ save_cmdline(&save_ccline);
c = ex_window();
+ restore_cmdline(&save_ccline);
some_key_typed = TRUE;
}
}
if (fdc > 0)
{
/* Draw the 'foldcolumn'. Allocate a buffer, "extra" may
- * already be in used. */
+ * already be in use. */
p_extra_free = alloc(12 + 1);
if (p_extra_free != NULL)
#endif
);
+ if (ScreenLines == NULL)
+ return;
redraw_tabline = FALSE;
#ifdef FEAT_GUI_TABLINE
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 159,
/**/
158,
/**/