mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/pathname.rb (Pathname::SAME_PATHS): FNM_SYSCASE is always
non-nil. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
01be019547
commit
d645c25a7f
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Oct 23 09:12:59 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/pathname.rb (Pathname::SAME_PATHS): FNM_SYSCASE is always
|
||||
non-nil.
|
||||
|
||||
Fri Oct 23 07:32:37 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in, Makefile.in, win32/Makefile.sub (XRUBY): runnable
|
||||
|
|
|
@ -198,7 +198,7 @@ class Pathname
|
|||
TO_PATH = :to_path
|
||||
end
|
||||
|
||||
SAME_PATHS = if File::FNM_SYSCASE
|
||||
SAME_PATHS = if File::FNM_SYSCASE.nonzero?
|
||||
proc {|a, b| a.casecmp(b).zero?}
|
||||
else
|
||||
proc {|a, b| a == b}
|
||||
|
|
Loading…
Reference in a new issue