diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-05 20:41:53 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-05 20:41:53 +0000 |
commit | 910f66f90c928da8b607ccfdc12fc33d9cb8d4a9 (patch) | |
tree | 152a03d1d7ea3e8d433addba4f463d8a7a68a5fd /src/structs.h | |
parent | e2f98b95c8071f772695602cd4f714dc588eb8e7 (diff) | |
download | vim-git-910f66f90c928da8b607ccfdc12fc33d9cb8d4a9.tar.gz |
updated for version 7.0c10v7.0c10
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h index 2a9882b15..ce3bf9b1f 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1635,6 +1635,10 @@ struct tabpage_S int tp_diff_invalid; /* list of diffs is outdated */ #endif frame_T *tp_snapshot; /* window layout snapshot */ +#ifdef FEAT_EVAL + dictitem_T tp_winvar; /* variable for "t:" Dictionary */ + dict_T tp_vars; /* internal variables, local to tab page */ +#endif }; /* @@ -1928,8 +1932,9 @@ struct window_S #endif #ifdef FEAT_SEARCH_EXTRA - regmmatch_T w_match[3]; /* regexp programs for ":match" */ - int w_match_id[3]; /* highlight IDs for ":match" */ + regmmatch_T w_match[3]; /* regexp programs for ":match" */ + char_u *(w_match_pat[3]); /* patterns for ":match" */ + int w_match_id[3]; /* highlight IDs for ":match" */ #endif /* |