diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-04-24 02:51:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-24 02:51:07 +0200 |
commit | ad60927d09252d457fe454921216d42c9068c20b (patch) | |
tree | 71d549f440b994d4507e4f8423561c0a85e9457a /src/nvim/fileio.c | |
parent | ffb89049131a1e381c7d2b313acb953009bae067 (diff) | |
parent | 77cb14cc6da5dff685c6e5a4005da433c39d5ff7 (diff) | |
download | rneovim-ad60927d09252d457fe454921216d42c9068c20b.tar.gz rneovim-ad60927d09252d457fe454921216d42c9068c20b.tar.bz2 rneovim-ad60927d09252d457fe454921216d42c9068c20b.zip |
Merge #8304 "default to 'nofsync'"
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 4adff63b95..d96f5412ec 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -3068,7 +3068,7 @@ nobackup: */ if (reset_changed && !newfile && overwriting && !(exiting && backup != NULL)) { - ml_preserve(buf, FALSE); + ml_preserve(buf, false, !!p_fs); if (got_int) { SET_ERRMSG(_(e_interr)); goto restore_backup; |