mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.1.0790: code for creating tabpages in session is too complex
Problem: Code for creating tabpages in session is too complex. Solution: Simplify the code. (Jason Franklin)
This commit is contained in:
@@ -11401,26 +11401,14 @@ makeopens(
|
|||||||
tab_topframe = topframe;
|
tab_topframe = topframe;
|
||||||
if ((ssop_flags & SSOP_TABPAGES))
|
if ((ssop_flags & SSOP_TABPAGES))
|
||||||
{
|
{
|
||||||
int num_tabs;
|
tabpage_T *tp;
|
||||||
|
|
||||||
/*
|
// Similar to ses_win_rec() below, populate the tab pages first so
|
||||||
* Similar to ses_win_rec() below, populate the tab pages first so
|
// later local options won't be copied to the new tabs.
|
||||||
* later local options won't be copied to the new tabs.
|
FOR_ALL_TABPAGES(tp)
|
||||||
*/
|
if (tp->tp_next != NULL && put_line(fd, "tabnew") == FAIL)
|
||||||
for (tabnr = 1; ; ++tabnr)
|
|
||||||
{
|
|
||||||
tabpage_T *tp = find_tabpage(tabnr);
|
|
||||||
|
|
||||||
if (tp == NULL) /* done all tab pages */
|
|
||||||
break;
|
|
||||||
|
|
||||||
if (tabnr > 1 && put_line(fd, "tabnew") == FAIL)
|
|
||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
if (first_tabpage->tp_next != NULL && put_line(fd, "tabrewind") == FAIL)
|
||||||
|
|
||||||
num_tabs = tabnr - 1;
|
|
||||||
if (num_tabs > 1 && (fprintf(fd, "tabnext -%d", num_tabs - 1) < 0
|
|
||||||
|| put_eol(fd) == FAIL))
|
|
||||||
return FAIL;
|
return FAIL;
|
||||||
}
|
}
|
||||||
for (tabnr = 1; ; ++tabnr)
|
for (tabnr = 1; ; ++tabnr)
|
||||||
|
@@ -791,6 +791,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
790,
|
||||||
/**/
|
/**/
|
||||||
789,
|
789,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user