[vim] - patchlevel 484

Karsten Hopp karsten at fedoraproject.org
Wed Oct 22 15:57:13 UTC 2014


commit 0eb9c698df4b29f1b965d3904e086af7e1f1c2d5
Author: Karsten Hopp <karsten at redhat.com>
Date:   Wed Oct 22 18:00:10 2014 +0200

    - patchlevel 484

 7.4.484 |   52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 52 insertions(+), 0 deletions(-)
---
diff --git a/7.4.484 b/7.4.484
new file mode 100644
index 0000000..c914d0a
--- /dev/null
+++ b/7.4.484
@@ -0,0 +1,52 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.4.484
+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.484 (after 7.4.483)
+Problem:    Compiler warning on MS-Windows. (Ken Takata)
+Solution:   Add type cast.
+Files:	    src/getchar.c
+
+
+*** ../vim-7.4.483/src/getchar.c	2014-10-21 16:22:01.403175226 +0200
+--- src/getchar.c	2014-10-21 18:12:33.170273428 +0200
+***************
+*** 4530,4536 ****
+  	    if (q != NULL)
+  	    {
+  		vim_unescape_csi(q);
+! 		qlen = STRLEN(q);
+  		vim_free(q);
+  	    }
+  	}
+--- 4530,4536 ----
+  	    if (q != NULL)
+  	    {
+  		vim_unescape_csi(q);
+! 		qlen = (int)STRLEN(q);
+  		vim_free(q);
+  	    }
+  	}
+*** ../vim-7.4.483/src/version.c	2014-10-21 16:22:01.407175226 +0200
+--- src/version.c	2014-10-21 18:14:13.410273647 +0200
+***************
+*** 743,744 ****
+--- 743,746 ----
+  {   /* Add new patch number below this line */
++ /**/
++     484,
+  /**/
+
+-- 
+"My particular problem is with registry entries, which seem to just
+accumulate like plastic coffee cups..."           -- Paul Moore
+
+ /// 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