diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-06 14:15:36 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-06 14:15:36 +0000 |
commit | 17e79197d5c2834cbe1c7b33f3770fe30f220ba9 (patch) | |
tree | 84ab3422fdab8ce090f4461668747cba140e9d96 /src | |
parent | 8cfdc0df95ab76183c51fbf7a9ab03fd3db7c16a (diff) | |
download | vim-17e79197d5c2834cbe1c7b33f3770fe30f220ba9.zip |
updated for version 7.1a
Diffstat (limited to 'src')
-rw-r--r-- | src/memfile.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/memfile.c b/src/memfile.c index d5caf3b9a..0c4d01cc0 100644 --- a/src/memfile.c +++ b/src/memfile.c @@ -325,9 +325,9 @@ mf_new(mfp, negative, page_count) int negative; int page_count; { - bhdr_T *hp; /* new bhdr_T */ - bhdr_T *freep; /* first block in free list */ - char_u *p; + bhdr_T *hp; /* new bhdr_T */ + bhdr_T *freep; /* first block in free list */ + char_u *p; /* * If we reached the maximum size for the used memory blocks, release one @@ -348,10 +348,10 @@ mf_new(mfp, negative, page_count) * If the block in the free list has more pages, take only the number * of pages needed and allocate a new bhdr_T with data * - * If the number of pages matches and mf_release did not return a bhdr_T, - * use the bhdr_T from the free list and allocate the data + * If the number of pages matches and mf_release() did not return a + * bhdr_T, use the bhdr_T from the free list and allocate the data * - * If the number of pages matches and mf_release returned a bhdr_T, + * If the number of pages matches and mf_release() returned a bhdr_T, * just use the number and free the bhdr_T from the free list */ if (freep->bh_page_count > page_count) |