diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-02-22 08:49:11 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-02-22 08:49:11 +0000 |
commit | 26a60b45245080771bc2452b2634cb1f5acd60ed (patch) | |
tree | 82a54fd6544b2c2a57b5c52cb4d64c42dcd640a3 /src/structs.h | |
parent | df177f679e950a2ab2ad5fe7d45c1daface004d7 (diff) | |
download | vim-git-26a60b45245080771bc2452b2634cb1f5acd60ed.tar.gz |
updated for version 7.0051
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index 92a8428f1..71c692ad1 100644 --- a/src/structs.h +++ b/src/structs.h @@ -307,7 +307,8 @@ struct m_block { mblock_T *mb_next; /* pointer to next allocated block */ size_t mb_size; /* total size of all chunks in this block */ - minfo_T mb_info; /* head of free chuck list for this block */ + size_t mb_maxsize; /* size of largest fee chunk */ + minfo_T mb_info; /* head of free chunk list for this block */ }; /* @@ -1211,6 +1212,7 @@ struct file_buffer minfo_T *b_m_search; /* pointer to chunk before previously allocated/freed chunk */ mblock_T *b_mb_current; /* block where m_search points in */ + #ifdef FEAT_INS_EXPAND int b_scanned; /* ^N/^P have scanned this buffer */ #endif |