diff options
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 |