diff options
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/globals.h b/src/globals.h index c6409b96b..0cea5c28b 100644 --- a/src/globals.h +++ b/src/globals.h @@ -507,11 +507,12 @@ EXTERN frame_T *topframe; /* top of the window frame tree */ #ifdef FEAT_WINDOWS /* - * Tab pages are nothing more than alternative topframes. "first_tabpage" - * points to the first one in the list, "topframe" is the current one. + * Tab pages are alternative topframes. "first_tabpage" points to the first + * one in the list, "curtab" is the current one. */ -EXTERN tabpage_T *first_tabpage; -EXTERN int redraw_tabpage INIT(= FALSE); /* redraw tab pages line */ +EXTERN tabpage_T *first_tabpage; +EXTERN tabpage_T *curtab; +EXTERN int redraw_tabline INIT(= FALSE); /* need to redraw tabline */ #endif /* |