]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.644 v7.4.644
authorBram Moolenaar <Bram@vim.org>
Fri, 27 Feb 2015 17:25:16 +0000 (18:25 +0100)
committerBram Moolenaar <Bram@vim.org>
Fri, 27 Feb 2015 17:25:16 +0000 (18:25 +0100)
Problem:    Stratus VOS doesn't have sync().
Solution:   Use fflush(). (Karli Aurelia)

src/memfile.c
src/version.c

index d1bc96a577cc705ffcf933d80cffb8664d17dbc5..57c9d92fd2222c7b287d5b8a7b6c9167e3a83891 100644 (file)
@@ -639,7 +639,8 @@ mf_sync(mfp, flags)
 # endif
            /* OpenNT is strictly POSIX (Benzinger) */
            /* Tandem/Himalaya NSK-OSS doesn't have sync() */
-# if defined(__OPENNT) || defined(__TANDEM)
+           /* No sync() on Stratus VOS */
+# if defined(__OPENNT) || defined(__TANDEM) || defined(__VOS__)
            fflush(NULL);
 # else
            sync();
index e74b125e055fe106428a3ce204897d8014f45fb4..38f3b785f9398b1455991c62f10ce6786b45c3c4 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    644,
 /**/
     643,
 /**/