summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-12-15 18:54:27 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-12-15 18:54:27 +0000
commit330b90efb1e87acfcac5e5e809175fa9dfef1806 (patch)
tree5b09c83aaa1e37cf664a23211b0c0800da10fa3f
parent8a971c09ba14d9b03f62f49d5fad6d5428dda718 (diff)
backport from ruby_1_8
* lib/rdoc/ri/ri_options.rb: prevent NameError. [ruby-dev:29597] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@11395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/rdoc/ri/ri_options.rb1
-rw-r--r--version.h2
3 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 65b993dc9b..309c7a1cf6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Dec 15 17:21:14 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * lib/rdoc/ri/ri_options.rb: prevent NameError. [ruby-dev:29597]
+
Thu Dec 14 23:37:38 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* dir.c (glob_helper): get rid of possible memory leak.
diff --git a/lib/rdoc/ri/ri_options.rb b/lib/rdoc/ri/ri_options.rb
index 91a28e1ab4..db9f4afecf 100644
--- a/lib/rdoc/ri/ri_options.rb
+++ b/lib/rdoc/ri/ri_options.rb
@@ -3,6 +3,7 @@
module RI
+ require 'rdoc/ri/ri_paths'
require 'rdoc/ri/ri_display'
VERSION_STRING = "ri v1.0.1 - 20041108"
diff --git a/version.h b/version.h
index ab8b5096ca..b12a5383d4 100644
--- a/version.h
+++ b/version.h
@@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2006-12-14"
#define RUBY_VERSION_CODE 185
#define RUBY_RELEASE_CODE 20061214
-#define RUBY_PATCHLEVEL 9
+#define RUBY_PATCHLEVEL 10
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8