[vim: 5/25] - patchlevel 644

Karsten Hopp karsten at fedoraproject.org
Mon Mar 9 13:10:55 UTC 2015


commit 247b6e618375b2739b10dd13fdf69bead845ffc0
Author: Karsten Hopp <karsten at redhat.com>
Date:   Sat Feb 28 18:00:03 2015 +0100

    - patchlevel 644

 7.4.644 | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
---
diff --git a/7.4.644 b/7.4.644
new file mode 100644
index 0000000..cd7d001
--- /dev/null
+++ b/7.4.644
@@ -0,0 +1,52 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.4.644
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.4.644
+Problem:    Stratus VOS doesn't have sync().
+Solution:   Use fflush(). (Karli Aurelia)
+Files:	    src/memfile.c
+
+
+*** ../vim-7.4.643/src/memfile.c	2014-04-02 14:05:33.999887839 +0200
+--- src/memfile.c	2015-02-27 18:23:45.185146030 +0100
+***************
+*** 639,645 ****
+  # endif
+  	    /* OpenNT is strictly POSIX (Benzinger) */
+  	    /* Tandem/Himalaya NSK-OSS doesn't have sync() */
+! # if defined(__OPENNT) || defined(__TANDEM)
+  	    fflush(NULL);
+  # else
+  	    sync();
+--- 639,646 ----
+  # endif
+  	    /* OpenNT is strictly POSIX (Benzinger) */
+  	    /* Tandem/Himalaya NSK-OSS doesn't have sync() */
+! 	    /* No sync() on Stratus VOS */
+! # if defined(__OPENNT) || defined(__TANDEM) || defined(__VOS__)
+  	    fflush(NULL);
+  # else
+  	    sync();
+*** ../vim-7.4.643/src/version.c	2015-02-27 17:48:05.553308462 +0100
+--- src/version.c	2015-02-27 18:24:38.148547979 +0100
+***************
+*** 743,744 ****
+--- 743,746 ----
+  {   /* Add new patch number below this line */
++ /**/
++     644,
+  /**/
+
+-- 
+This is an airconditioned room, do not open Windows.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///


More information about the scm-commits mailing list