@@ -280,7 +280,7 @@ static void ruby_vim_init(void);
280280# define rb_enc_str_new dll_rb_enc_str_new
281281# define rb_sprintf dll_rb_sprintf
282282# define rb_require dll_rb_require
283- # define ruby_process_options dll_ruby_process_options
283+ # define ruby_options dll_ruby_options
284284# endif
285285
286286/*
@@ -384,7 +384,7 @@ static rb_encoding* (*dll_rb_enc_find) (const char*);
384384static VALUE (* dll_rb_enc_str_new ) (const char * , long , rb_encoding * );
385385static VALUE (* dll_rb_sprintf ) (const char * , ...);
386386static VALUE (* dll_rb_require ) (const char * );
387- static void * (* ruby_process_options )(int , char * * );
387+ static void * (* ruby_options )(int , char * * );
388388# endif
389389
390390# if defined(USE_RGENGC ) && USE_RGENGC
@@ -565,7 +565,7 @@ static struct
565565 {" rb_enc_str_new ", (RUBY_PROC*)&dll_rb_enc_str_new},
566566 {" rb_sprintf ", (RUBY_PROC*)&dll_rb_sprintf},
567567 {" rb_require ", (RUBY_PROC*)&dll_rb_require},
568- {" ruby_process_options ", (RUBY_PROC*)&dll_ruby_process_options },
568+ {" ruby_options ", (RUBY_PROC*)&dll_ruby_options },
569569# endif
570570# if defined(RUBY19_OR_LATER ) || defined (RUBY_INIT_STACK )
571571# ifdef __ia64
@@ -817,7 +817,7 @@ static int ensure_ruby_initialized(void)
817817 {
818818 int dummy_argc = 2 ;
819819 char * dummy_argv [] = {"vim-ruby" , "-e0" };
820- ruby_process_options (dummy_argc , dummy_argv );
820+ ruby_options (dummy_argc , dummy_argv );
821821 }
822822 ruby_script ("vim-ruby" );
823823#else
0 commit comments