commit | 99685e6a7e586acbf3383977ce6d029583b68ded | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat May 11 13:56:18 2013 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Sat May 11 13:56:18 2013 +0200 |
tree | b9761d857569fe00f8bc33a2a43282cbdc1a4f32 | |
parent | 6800186a03855c1a1c51fb6abb793306851db2ad [diff] [blame] |
updated for version 7.3.933 Problem: Ruby on Mac crashes due to GC failure. Solution: Init the stack from main(). (Hiroshi Shirosaki)
diff --git a/src/proto/if_ruby.pro b/src/proto/if_ruby.pro index 7dedb22..3e03b1f 100644 --- a/src/proto/if_ruby.pro +++ b/src/proto/if_ruby.pro
@@ -6,4 +6,5 @@ void ex_rubyfile __ARGS((exarg_T *eap)); void ruby_buffer_free __ARGS((buf_T *buf)); void ruby_window_free __ARGS((win_T *win)); +void vim_ruby_init __ARGS((void *stack_start)); /* vim: set ft=c : */