From: Bram Moolenaar Date: Fri, 24 Dec 2010 13:00:17 +0000 (+0100) Subject: updated for version 7.3.089 X-Git-Tag: v7.3.089 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de1b092c772dabf6e96fb4812c84c825a4240565;p=vim updated for version 7.3.089 Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams) --- diff --git a/src/netbeans.c b/src/netbeans.c index c0611d598..71b664cbf 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -800,7 +800,7 @@ netbeans_read() * -> gui event loop or select loop * -> netbeans_read() */ - save((char_u *)DETACH_MSG, strlen(DETACH_MSG)); + save((char_u *)DETACH_MSG, (int)strlen(DETACH_MSG)); nb_close_socket(); if (len < 0) diff --git a/src/version.c b/src/version.c index 48e37b293..4face8f49 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 89, /**/ 88, /**/