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

* 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
This commit is contained in:
knu 2007-03-03 06:53:38 +00:00
parent e8783d008c
commit 5d8187d772
3 changed files with 12 additions and 7 deletions

View file

@ -1,3 +1,8 @@
Sat Mar 3 15:52:26 2007 Akinori MUSHA <knu@iDaemons.org>
* object.c (instance_variable_get): Restore rdoc markups lost in
the last commit.
Fri Mar 2 21:17:14 2007 Masaki Suketa <masaki.suketa@nifty.ne.jp> Fri Mar 2 21:17:14 2007 Masaki Suketa <masaki.suketa@nifty.ne.jp>
* ext/win32ole/win32ole.c (get_ptr_of_variant, ole_set_safe_array, * ext/win32ole/win32ole.c (get_ptr_of_variant, ole_set_safe_array,

View file

@ -1661,10 +1661,10 @@ rb_obj_public_methods(int argc, VALUE *argv, VALUE obj)
* obj.instance_variable_get(symbol) => obj * obj.instance_variable_get(symbol) => obj
* *
* Returns the value of the given instance variable, or nil if the * Returns the value of the given instance variable, or nil if the
* instance variable is not set. The @ part of the variable name * instance variable is not set. The <code>@</code> part of the
* should be included for regular instance variables. Throws a * variable name should be included for regular instance
* NameError exception if the supplied symbol is not valid as an * variables. Throws a <code>NameError</code> exception if the
* instance variable name. * supplied symbol is not valid as an instance variable name.
* *
* class Fred * class Fred
* def initialize(p1, p2) * def initialize(p1, p2)

View file

@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.0" #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_VERSION_CODE 190
#define RUBY_RELEASE_CODE 20070302 #define RUBY_RELEASE_CODE 20070303
#define RUBY_PATCHLEVEL 0 #define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MAJOR 1
@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 0 #define RUBY_VERSION_TEENY 0
#define RUBY_RELEASE_YEAR 2007 #define RUBY_RELEASE_YEAR 2007
#define RUBY_RELEASE_MONTH 3 #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_version[];
RUBY_EXTERN const char ruby_release_date[]; RUBY_EXTERN const char ruby_release_date[];