diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-18 21:40:56 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-18 21:40:56 +0000 |
commit | 97b2ad35425fd589c4ff816d1f1161f2f7f6a93d (patch) | |
tree | a0fed79e1bd28b00c32554c62110903d49ac9b20 /src/structs.h | |
parent | 658b74a7360cff23939dbf5075b8e18e38c77a81 (diff) | |
download | vim-97b2ad35425fd589c4ff816d1f1161f2f7f6a93d.zip |
updated for version 7.0228
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 1e66e6ff5..6abdc4149 100644 --- a/src/structs.h +++ b/src/structs.h @@ -176,6 +176,8 @@ typedef struct #if defined(FEAT_WINDOWS) int wo_wfh; # define w_p_wfh w_onebuf_opt.wo_wfh /* 'winfixheight' */ + int wo_wfw; +# define w_p_wfw w_onebuf_opt.wo_wfw /* 'winfixwidth' */ #endif #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) int wo_pvw; @@ -1656,6 +1658,7 @@ struct frame_S char fr_layout; /* FR_LEAF, FR_COL or FR_ROW */ #ifdef FEAT_VERTSPLIT int fr_width; + int fr_newwidth; /* new width used in win_equal_rec() */ #endif int fr_height; int fr_newheight; /* new height used in win_equal_rec() */ |