forked from aniani/vim
Problem: Ruby on Mac crashes due to GC failure. Solution: Init the stack from main(). (Hiroshi Shirosaki)
11 lines
361 B
C
11 lines
361 B
C
/* if_ruby.c */
|
|
int ruby_enabled __ARGS((int verbose));
|
|
void ruby_end __ARGS((void));
|
|
void ex_ruby __ARGS((exarg_T *eap));
|
|
void ex_rubydo __ARGS((exarg_T *eap));
|
|
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 : */
|