1
0
forked from aniani/vim

Various changes

This commit is contained in:
Bram Moolenaar
2004-06-16 11:19:22 +00:00
parent 071d4279d6
commit ed20346f0b
21 changed files with 2897 additions and 2818 deletions

View File

@@ -56,7 +56,7 @@ typedef struct growarray
{
int ga_len; /* current number of items used */
int ga_room; /* number of unused items at the end */
int ga_itemsize; /* sizeof one item */
int ga_itemsize; /* sizeof(item) */
int ga_growsize; /* number of items to grow each time */
void *ga_data; /* pointer to the first item */
} garray_T;