We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf16286 commit 9c42afaCopy full SHA for 9c42afa
src/gui_w32.c
@@ -1574,6 +1574,10 @@ gui_mch_init(void)
1574
#endif
1575
1576
#ifdef FEAT_EVAL
1577
+# if _MSC_VER < 1400
1578
+/* HandleToLong() only exists in compilers that can do 64 bit builds */
1579
+# define HandleToLong(h) ((long)(h))
1580
+# endif
1581
/* set the v:windowid variable */
1582
set_vim_var_nr(VV_WINDOWID, HandleToLong(s_hwnd));
1583
src/version.c
@@ -709,6 +709,8 @@ static char *(features[]) =
709
710
static int included_patches[] =
711
{ /* Add new patch number below this line */
712
+/**/
713
+ 244,
714
/**/
715
243,
716
0 commit comments