From ceb4a5fe0a69cb7fcf5c7098ca7e2afdfa9b9cb4 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 18 Feb 2006 03:23:16 +0000 Subject: * lib/fileutils.rb (FileUtils::fu_world_writable): make it private. [ruby-core:07383] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/fileutils.rb | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 59a1683b8..18612c3ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Feb 18 12:18:26 2006 Yukihiro Matsumoto + + * lib/fileutils.rb (FileUtils::fu_world_writable): make it + private. [ruby-core:07383] + Sat Feb 18 00:22:39 2006 Yukihiro Matsumoto * lib/tracer.rb: merged a minor clarification patch from Daniel diff --git a/lib/fileutils.rb b/lib/fileutils.rb index ea9f8ed87..0459a4511 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -719,6 +719,7 @@ module FileUtils def fu_world_writable?(st) (st.mode & 0002) != 0 end + private_module_function :fu_world_writable? def fu_have_symlink? #:nodoc File.symlink nil, nil -- cgit