summaryrefslogtreecommitdiff
path: root/src/ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.c')
-rw-r--r--src/ui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui.c b/src/ui.c
index 6c1c1de02..a42393732 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -50,8 +50,10 @@ ui_write(char_u *s, int len, int console UNUSED)
# endif
mch_write(s, len);
+# if defined(HAVE_FSYNC)
if (console && s[len - 1] == '\n')
- fsync(1);
+ vim_fsync(1);
+# endif
# if !defined(MSWIN)
if (output_conv.vc_type != CONV_NONE)