From 5d8187d77250484e7f72cbe08d87083a125b9c58 Mon Sep 17 00:00:00 2001 From: knu Date: Sat, 3 Mar 2007 06:53:38 +0000 Subject: [PATCH] * object.c (instance_variable_get): Restore rdoc markups lost in the last commit. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ object.c | 8 ++++---- version.h | 6 +++--- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index f8410d7f55..d0b820f505 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Mar 3 15:52:26 2007 Akinori MUSHA + + * object.c (instance_variable_get): Restore rdoc markups lost in + the last commit. + Fri Mar 2 21:17:14 2007 Masaki Suketa * ext/win32ole/win32ole.c (get_ptr_of_variant, ole_set_safe_array, diff --git a/object.c b/object.c index a27e17efa7..573f75a3dd 100644 --- a/object.c +++ b/object.c @@ -1661,10 +1661,10 @@ rb_obj_public_methods(int argc, VALUE *argv, VALUE obj) * obj.instance_variable_get(symbol) => obj * * Returns the value of the given instance variable, or nil if the - * instance variable is not set. The @ part of the variable name - * should be included for regular instance variables. Throws a - * NameError exception if the supplied symbol is not valid as an - * instance variable name. + * instance variable is not set. The @ part of the + * variable name should be included for regular instance + * variables. Throws a NameError exception if the + * supplied symbol is not valid as an instance variable name. * * class Fred * def initialize(p1, p2) diff --git a/version.h b/version.h index b96d002878..78f407ea13 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.9.0" -#define RUBY_RELEASE_DATE "2007-03-02" +#define RUBY_RELEASE_DATE "2007-03-03" #define RUBY_VERSION_CODE 190 -#define RUBY_RELEASE_CODE 20070302 +#define RUBY_RELEASE_CODE 20070303 #define RUBY_PATCHLEVEL 0 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2007 #define RUBY_RELEASE_MONTH 3 -#define RUBY_RELEASE_DAY 2 +#define RUBY_RELEASE_DAY 3 RUBY_EXTERN const char ruby_version[]; RUBY_EXTERN const char ruby_release_date[];