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 7f0608f commit 74a97b1Copy full SHA for 74a97b1
src/if_mzsch.c
@@ -1101,10 +1101,10 @@ startup_mzscheme(void)
1101
MZ_GC_VAR_IN_REG(0, coll_path);
1102
MZ_GC_REG();
1103
/* workaround for dynamic loading on windows */
1104
- s = vim_getenv("PLTCOLLECTS", &mustfree);
+ s = vim_getenv((char_u *)"PLTCOLLECTS", &mustfree);
1105
if (s != NULL)
1106
{
1107
- coll_path = scheme_make_path(s);
+ coll_path = scheme_make_path((char *)s);
1108
MZ_GC_CHECK();
1109
if (mustfree)
1110
vim_free(s);
src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
747
748
static int included_patches[] =
749
{ /* Add new patch number below this line */
750
+/**/
751
+ 1349,
752
/**/
753
1348,
754
0 commit comments