diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-28 16:30:04 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-28 16:30:04 +0200 |
commit | 473952e85286eb9c6098801f1819981ba61ad153 (patch) | |
tree | 853c22efb3c9b723e336b560e756da38db610021 /src/proto.h | |
parent | 9be0e0b9d31e42d0074527a7789836087475142a (diff) | |
download | vim-git-473952e85286eb9c6098801f1819981ba61ad153.tar.gz |
patch 8.1.2094: the fileio.c file is too bigv8.1.2094
Problem: The fileio.c file is too big.
Solution: Move buf_write() to bufwrite.c. (Yegappan Lakshmanan,
closes #4990)
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto.h b/src/proto.h index 4c419c6fb..625e8aa47 100644 --- a/src/proto.h +++ b/src/proto.h @@ -64,6 +64,7 @@ extern int _stricoll(char *a, char *b); # include "arglist.pro" # include "autocmd.pro" # include "buffer.pro" +# include "bufwrite.pro" # include "change.pro" # include "charset.pro" # include "cmdexpand.pro" |