diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-06-22 13:03:08 +0300 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-14 21:14:40 +0200 |
commit | 286ce271e730a2e6883c244912b36bca007f6ddc (patch) | |
tree | c53fd19698e3eb3327311490b8ad4c6664c2e251 /src/nvim/memline.c | |
parent | 8cfa7b3d15f503ff4fd4fc1df26bca109b31497b (diff) | |
download | rneovim-286ce271e730a2e6883c244912b36bca007f6ddc.tar.gz rneovim-286ce271e730a2e6883c244912b36bca007f6ddc.tar.bz2 rneovim-286ce271e730a2e6883c244912b36bca007f6ddc.zip |
Extract `tempfile` module from fileio
Though this module is relatively small it has very clear boundaries.
The last argument for extracting `tempfile` was the errors which I got
when I was writing unittests for it: `cimport './src/nvim/fileio.h'`
does not work for some reason.
Diffstat (limited to 'src/nvim/memline.c')
-rw-r--r-- | src/nvim/memline.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/memline.c b/src/nvim/memline.c index c41942301f..a10fc2b8c5 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -69,6 +69,7 @@ #include "nvim/spell.h" #include "nvim/strings.h" #include "nvim/term.h" +#include "nvim/tempfile.h" #include "nvim/ui.h" #include "nvim/undo.h" #include "nvim/window.h" |