summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-23 16:40:53 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-23 16:40:53 +0000
commit46541321450f377c52d6ffe4db307840da0283e0 (patch)
tree1bc091a025de6eb0728fecacc3012b9629dc5d6c
parente44b8eb3ad2b1dcc5870a4db66c6741d66ddc82c (diff)
* include/ruby/intern.h (rb_f_lambde): restore the declaration of
rb_f_lambda() for backword compatibility. and mark it as deprecated. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@42145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--include/ruby/intern.h1
-rw-r--r--version.h6
3 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index aad23c8c9b..4c82700e0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jul 24 01:13:02 2013 CHIKANAGA Tomoyuki <nagachika@ruby-lang.org>
+
+ * include/ruby/intern.h (rb_f_lambde): restore the declaration of
+ rb_f_lambda() for backword compatibility. and mark it as deprecated.
+
Tue Jul 23 01:36:43 2013 Zachary Scott <e@zzak.io>
* lib/rubygems/psych_additions.rb: Ignore Psych docs here
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index 38c41757ae..c447b37223 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -382,6 +382,7 @@ VALUE rb_require_safe(VALUE, int);
void rb_obj_call_init(VALUE, int, VALUE*);
VALUE rb_class_new_instance(int, VALUE*, VALUE);
VALUE rb_block_proc(void);
+DEPRECATED(VALUE rb_f_lambda(void));
VALUE rb_block_lambda(void);
VALUE rb_proc_new(VALUE (*)(ANYARGS/* VALUE yieldarg[, VALUE procarg] */), VALUE);
VALUE rb_obj_is_proc(VALUE);
diff --git a/version.h b/version.h
index 9eb5d03124..70aaa5f5d6 100644
--- a/version.h
+++ b/version.h
@@ -1,10 +1,10 @@
#define RUBY_VERSION "2.0.0"
-#define RUBY_RELEASE_DATE "2013-07-23"
-#define RUBY_PATCHLEVEL 277
+#define RUBY_RELEASE_DATE "2013-07-24"
+#define RUBY_PATCHLEVEL 278
#define RUBY_RELEASE_YEAR 2013
#define RUBY_RELEASE_MONTH 7
-#define RUBY_RELEASE_DAY 23
+#define RUBY_RELEASE_DAY 24
#include "ruby/version.h"