[vim] - patchlevel 778

Karsten Hopp karsten at fedoraproject.org
Mon Jan 28 11:17:16 UTC 2013


commit 51f6af431ca65084c91fdd14ee39205519a36d7d
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Jan 28 12:11:43 2013 +0100

    - patchlevel 778

 7.3.778 |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 53 insertions(+), 0 deletions(-)
---
diff --git a/7.3.778 b/7.3.778
new file mode 100644
index 0000000..62a8a91
--- /dev/null
+++ b/7.3.778
@@ -0,0 +1,53 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.778
+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.3.778
+Problem:    Compiler error for adding up two pointers. (Titov Anatoly)
+Solution:   Add a type cast. (Ken Takata)
+Files:	    src/mbyte.c
+
+
+*** ../vim-7.3.777/src/mbyte.c	2013-01-19 14:01:57.000000000 +0100
+--- src/mbyte.c	2013-01-23 16:18:02.000000000 +0100
+***************
+*** 4325,4331 ****
+  	{
+  	    if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
+  		continue;
+! 	    pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage + pINT->u1.AddressOfData);
+  	    if (strcmp(pImpName->Name, funcname) == 0)
+  		return (void *)pIAT->u1.Function;
+  	}
+--- 4325,4332 ----
+  	{
+  	    if (IMAGE_SNAP_BY_ORDINAL(pINT->u1.Ordinal))
+  		continue;
+! 	    pImpName = (PIMAGE_IMPORT_BY_NAME)(pImage
+! 					+ (UINT_PTR)(pINT->u1.AddressOfData));
+  	    if (strcmp(pImpName->Name, funcname) == 0)
+  		return (void *)pIAT->u1.Function;
+  	}
+*** ../vim-7.3.777/src/version.c	2013-01-23 16:00:05.000000000 +0100
+--- src/version.c	2013-01-23 16:18:40.000000000 +0100
+***************
+*** 727,728 ****
+--- 727,730 ----
+  {   /* Add new patch number below this line */
++ /**/
++     778,
+  /**/
+
+-- 
+'I generally avoid temptation unless I can't resist it."
+		-- Mae West
+
+ /// 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