diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-12-27 21:59:20 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-12-27 21:59:20 +0000 |
commit | 86b68359978c933419279e599d0a8cf536095d77 (patch) | |
tree | 4291920506f596f1c934c9cf3af5641bdc63b900 /src/structs.h | |
parent | b5bf5b8fae9ff5e2f7704686efae2814be1e18f7 (diff) | |
download | vim-git-86b68359978c933419279e599d0a8cf536095d77.tar.gz |
updated for version 7.0025v7.0025
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h index 84b1a2471..3d713935b 100644 --- a/src/structs.h +++ b/src/structs.h @@ -55,7 +55,7 @@ typedef struct typedef struct growarray { int ga_len; /* current number of items used */ - int ga_room; /* number of unused items at the end */ + int ga_maxlen; /* maximum number of items possible */ int ga_itemsize; /* sizeof(item) */ int ga_growsize; /* number of items to grow each time */ void *ga_data; /* pointer to the first item */ @@ -1127,6 +1127,7 @@ struct file_buffer char_u *b_p_ft; /* 'filetype' */ #endif char_u *b_p_fo; /* 'formatoptions' */ + char_u *b_p_flp; /* 'formatlistpat' */ int b_p_inf; /* 'infercase' */ char_u *b_p_isk; /* 'iskeyword' */ #ifdef FEAT_FIND_ID |