aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-03 06:53:38 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-03 06:53:38 +0000
commit5d8187d77250484e7f72cbe08d87083a125b9c58 (patch)
tree0e40e75c3ddb71007f3622fe6ac89716d4e57a3e
parente8783d008c8944bb66ed7620d45f39286b5f948f (diff)
downloadruby-5d8187d77250484e7f72cbe08d87083a125b9c58.tar.gz
* 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
-rw-r--r--ChangeLog5
-rw-r--r--object.c8
-rw-r--r--version.h6
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 <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>
* 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 <code>@</code> part of the
+ * variable name should be included for regular instance
+ * variables. Throws a <code>NameError</code> 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[];