change mrb_run related API names; compatibility macros provided

This commit is contained in:
Yukihiro "Matz" Matsumoto
2016-01-07 22:36:29 +09:00
parent 725b3ca5a7
commit f7afe1d82a
5 changed files with 13 additions and 17 deletions
-2
View File
@@ -40,8 +40,6 @@ MRB_API void mrbc_context_free(mrb_state *mrb, mrbc_context *cxt);
MRB_API const char *mrbc_filename(mrb_state *mrb, mrbc_context *c, const char *s);
MRB_API void mrbc_partial_hook(mrb_state *mrb, mrbc_context *c, int (*partial_hook)(struct mrb_parser_state*), void*data);
MRB_API mrb_value mrb_toplevel_run_keep(mrb_state*, struct RProc*, unsigned int);
/* AST node structure */
typedef struct mrb_ast_node {
struct mrb_ast_node *car, *cdr;