summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-17 21:53:23 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-17 21:53:23 +0000
commit997fb4ba696625e27e17c00d5033b20411aa45a3 (patch)
tree491f6645be05ca184f550a69c4c3b7c7a50b38fe /src/globals.h
parent49d7bf13e0d7e656ac246ec1dd7309560b070289 (diff)
updated for version 7.0200v7.0200
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/globals.h b/src/globals.h
index c6409b96bb..0cea5c28bf 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
/*