From 05718f7f2eb5a1b6e148ace7d6e8b5f220fe5e1f Mon Sep 17 00:00:00 2001 From: yugui Date: Mon, 13 Jul 2009 08:08:25 +0000 Subject: merges r24065 from trunk into ruby_1_9_1. -- * lib/pstore.rb (PStore#on_windows): fixed typo. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@24081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/pstore.rb | 2 +- version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pstore.rb b/lib/pstore.rb index fdc518eae..947dc1d51 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 c13052991..9637bc2ca 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 -- cgit