From 1dd28acf767a964220076ff6a53df7c7b65a6772 Mon Sep 17 00:00:00 2001 From: yugui Date: Mon, 4 May 2009 12:29:09 +0000 Subject: merges r23134 from trunk into ruby_1_9_1. -- * include/ruby/intern.h (RB_NUM_COERCE_FUNCS_NEED_OPID): macro to check compatibility. [ruby-dev:38162] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ include/ruby/intern.h | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index bfc950d8c..2821ffddc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Apr 4 17:05:15 2009 Nobuyoshi Nakada + + * include/ruby/intern.h (RB_NUM_COERCE_FUNCS_NEED_OPID): macro to + check compatibility. [ruby-dev:38162] + Fri Apr 3 14:02:42 2009 Akinori MUSHA * lib/irb/completion.rb (IRB::InputCompletor::Operators): Add diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 68b0643aa..a3bb3ff61 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -421,6 +421,7 @@ VALUE rb_marshal_load(VALUE); void rb_marshal_define_compat(VALUE newclass, VALUE oldclass, VALUE (*dumper)(VALUE), VALUE (*loader)(VALUE, VALUE)); /* numeric.c */ void rb_num_zerodiv(void); +#define RB_NUM_COERCE_FUNCS_NEED_OPID 1 VALUE rb_num_coerce_bin(VALUE, VALUE, ID); VALUE rb_num_coerce_cmp(VALUE, VALUE, ID); VALUE rb_num_coerce_relop(VALUE, VALUE, ID); -- cgit