diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-02-17 21:53:23 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-02-17 21:53:23 +0000 |
commit | 997fb4ba696625e27e17c00d5033b20411aa45a3 (patch) | |
tree | 491f6645be05ca184f550a69c4c3b7c7a50b38fe /src/globals.h | |
parent | 49d7bf13e0d7e656ac246ec1dd7309560b070289 (diff) | |
download | vim-997fb4ba696625e27e17c00d5033b20411aa45a3.zip |
updated for version 7.0200
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 /* |