summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-13 08:08:25 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-13 08:08:25 +0000
commit245f33717bbcf81a73d837201e13c95f93e1a904 (patch)
treeaac70930145d6cdf8907d55ffceedf9747a06cfb
parent6646cf7d0997c52fcaa36a1891692e2648985895 (diff)
merges r24065 from trunk into ruby_1_9_1.
-- * lib/pstore.rb (PStore#on_windows): fixed typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@24081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/pstore.rb2
-rw-r--r--version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pstore.rb b/lib/pstore.rb
index fdc518eaec..947dc1d51f 100644
--- a/lib/pstore.rb
+++ b/lib/pstore.rb
@@ -431,7 +431,7 @@ class PStore
def on_windows?
is_windows = RUBY_PLATFORM =~ /mswin/ ||
RUBY_PLATFORM =~ /mingw/ ||
- RUBY_PLATFORM =~ /bbcwin/ ||
+ RUBY_PLATFORM =~ /bccwin/ ||
RUBY_PLATFORM =~ /wince/
self.class.__send__(:define_method, :on_windows?) do
is_windows
diff --git a/version.h b/version.h
index c13052991d..9637bc2cac 100644
--- a/version.h
+++ b/version.h
@@ -4,7 +4,7 @@
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 9
#define RUBY_VERSION_TEENY 1
-#define RUBY_PATCHLEVEL 230
+#define RUBY_PATCHLEVEL 231
#define RUBY_RELEASE_YEAR 2009
#define RUBY_RELEASE_MONTH 7
#define RUBY_RELEASE_DAY 12