summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-15 22:18:42 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-15 22:18:42 +0000
commit4c7ed462cb7813730b4f15f9cb09f1b26d097fca (patch)
treecbca54821fdbaeb62a5c92ef875c8b8df54813c3 /src/structs.h
parente45828b593d8308535b80ef17fe660ead6fab533 (diff)
downloadvim-git-4c7ed462cb7813730b4f15f9cb09f1b26d097fca.tar.gz
updated for version 7.0198v7.0198
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/structs.h b/src/structs.h
index a743a4f46..893b826f9 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -1555,11 +1555,13 @@ typedef struct w_line
typedef struct tabpage_S tabpage_T;
struct tabpage_S
{
- tabpage_T *tp_next; /* next tabpage or NULL */
- frame_T *tp_topframe;
- win_T *tp_curwin; /* current window in this Tab page */
- win_T *tp_firstwin; /* first window in this Tab page */
- win_T *tp_lastwin; /* last window in this Tab page */
+ tabpage_T *tp_next; /* next tabpage or NULL */
+ frame_T *tp_topframe; /* topframe for the windows */
+ win_T *tp_curwin; /* current window in this Tab page */
+ win_T *tp_firstwin; /* first window in this Tab page */
+ win_T *tp_lastwin; /* last window in this Tab page */
+ long tp_old_Rows; /* Rows when Tab page was left */
+ long tp_old_Columns; /* Columns when Tab page was left */
};
/*