0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.3.933

Problem:    Ruby on Mac crashes due to GC failure.
Solution:   Init the stack from main(). (Hiroshi Shirosaki)
This commit is contained in:
Bram Moolenaar
2013-05-11 13:56:18 +02:00
parent 6800186a03
commit 99685e6a7e
4 changed files with 22 additions and 5 deletions

View File

@@ -192,6 +192,13 @@ main
params.window_count = -1;
#endif
#ifdef FEAT_RUBY
{
int ruby_stack_start;
vim_ruby_init((void *)&ruby_stack_start);
}
#endif
#ifdef FEAT_TCL
vim_tcl_init(params.argv[0]);
#endif