1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_core.h (rb_name_err_mesg_new): added prototype.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25557 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-10-29 06:43:28 +00:00
parent 0580ba0611
commit 0d9386d123
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Thu Oct 29 15:43:25 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* vm_core.h (rb_name_err_mesg_new): added prototype.
Thu Oct 29 13:53:18 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* array.c (rb_ary_to_ary): do not use #respond_to? to detect

View file

@ -618,6 +618,7 @@ VALUE rb_make_backtrace(void);
typedef int rb_backtrace_iter_func(void *, VALUE, int, VALUE);
int rb_backtrace_each(rb_backtrace_iter_func *iter, void *arg);
rb_control_frame_t *rb_vm_get_ruby_level_next_cfp(rb_thread_t *th, rb_control_frame_t *cfp);
VALUE rb_name_err_mesg_new(VALUE obj, VALUE mesg, VALUE recv, VALUE method);
NOINLINE(void rb_gc_save_machine_context(rb_thread_t *));