diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-04-19 13:15:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 13:15:29 +0100 |
commit | 7bf1a917b78ebc622b6691af9196b95b4a9d3142 (patch) | |
tree | f825ed90de47f15b3319dd354b97c3d29e4680f1 /src/nvim/diff.c | |
parent | ccc939ec1080e54123fee6586b222a3fd48dffbe (diff) | |
download | rneovim-7bf1a917b78ebc622b6691af9196b95b4a9d3142.tar.gz rneovim-7bf1a917b78ebc622b6691af9196b95b4a9d3142.tar.bz2 rneovim-7bf1a917b78ebc622b6691af9196b95b4a9d3142.zip |
vim-patch:8.1.2094: the fileio.c file is too big
Problem: The fileio.c file is too big.
Solution: Move buf_write() to bufwrite.c. (Yegappan Lakshmanan,
closes vim/vim#4990)
https://github.com/vim/vim/commit/c079f0fed1c16495d726d616c5362edc04742a0d
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/nvim/diff.c')
-rw-r--r-- | src/nvim/diff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/diff.c b/src/nvim/diff.c index 52c5732f23..b2efcbac58 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -22,6 +22,7 @@ #include "nvim/ascii.h" #include "nvim/autocmd.h" #include "nvim/buffer.h" +#include "nvim/bufwrite.h" #include "nvim/change.h" #include "nvim/charset.h" #include "nvim/cursor.h" |