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 5869cf0 commit fe6ce33Copy full SHA for fe6ce33
src/if_ruby.c
@@ -862,7 +862,11 @@ static int ensure_ruby_initialized(void)
862
int argc = 1;
863
char *argv[] = {"gvim.exe"};
864
char **argvp = argv;
865
+# ifdef RUBY19_OR_LATER
866
+ ruby_sysinit(&argc, &argvp);
867
+# else
868
NtInitialize(&argc, &argvp);
869
+# endif
870
#endif
871
{
872
#if defined(RUBY19_OR_LATER) || defined(RUBY_INIT_STACK)
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 187,
769
/**/
770
186,
771
0 commit comments