diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-29 06:13:52 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-29 06:13:52 +0000 |
commit | 44bc00431d1e7619c3715aa532ee2a1e85d44075 (patch) | |
tree | cb8bf5f5497b32eea8882dc159a4b8b41a85ecea /intern.h | |
parent | a4cc3695bf34e4580fa166c4d5c2a8022aeff636 (diff) | |
download | ruby-44bc00431d1e7619c3715aa532ee2a1e85d44075.tar.gz ruby-44bc00431d1e7619c3715aa532ee2a1e85d44075.tar.xz ruby-44bc00431d1e7619c3715aa532ee2a1e85d44075.zip |
* object.c (convert_type): [ruby-core:03845]
* eval.c (rb_funcall_rescue): new function.
* object.c (rb_Array): avoid using rb_respond_to().
* object.c (rb_Integer): ditto.
* eval.c (get_backtrace): no conversion for nil.
* parse.y (reduce_nodes): empty body should return nil.
* lib/cgi/session.rb (CGI::Session::initialize): [ruby-core:03832]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7414 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r-- | intern.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -217,6 +217,7 @@ VALUE rb_thread_main _((void)); VALUE rb_thread_local_aref _((VALUE, ID)); VALUE rb_thread_local_aset _((VALUE, ID, VALUE)); void rb_thread_atfork _((void)); +VALUE rb_funcall_rescue __((VALUE, ID, int, ...)); /* file.c */ int eaccess _((const char*, int)); VALUE rb_file_s_expand_path _((int, VALUE *)); |