aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2020-04-21 08:00:42 -0400
committerGitHub <noreply@github.com>2020-04-21 08:00:42 -0400
commite58a03a68eb76f1205a9851c34d39dbd3834f656 (patch)
tree2c2561bdf4bb2dba9b17f66509c3829716a80d4d /src/nvim/fileio.c
parent9678fe4cfba9f7a9dacbd6d5a56c58241e98aa60 (diff)
parente8dd2c986c4f93c58e74311ab08b614eb6270c70 (diff)
downloadrneovim-e58a03a68eb76f1205a9851c34d39dbd3834f656.tar.gz
rneovim-e58a03a68eb76f1205a9851c34d39dbd3834f656.tar.bz2
rneovim-e58a03a68eb76f1205a9851c34d39dbd3834f656.zip
Merge pull request #12108 from mcepl/luv-1.18.0-compat
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r--src/nvim/fileio.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c
index 88e9390c65..8da1c94219 100644
--- a/src/nvim/fileio.c
+++ b/src/nvim/fileio.c
@@ -62,6 +62,11 @@
#define BUFSIZE 8192 /* size of normal write buffer */
#define SMBUFSIZE 256 /* size of emergency write buffer */
+// For compatibility with libuv < 1.20.0 (tested on 1.18.0)
+#ifndef UV_FS_COPYFILE_FICLONE
+#define UV_FS_COPYFILE_FICLONE 0
+#endif
+
//
// The autocommands are stored in a list for each event.
// Autocommands for the same pattern, that are consecutive, are joined