* ext/pathname/pathname.c (path_lchmod): Pathname#lchmod translated

from pathname.rb.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-08-06 17:09:31 +00:00
parent c4c4bff456
commit 9352485e47
3 changed files with 15 additions and 3 deletions

View file

@ -512,9 +512,6 @@ end
class Pathname # * File *
# See <tt>File.lchmod</tt>.
def lchmod(mode) File.lchmod(mode, @path) end
# See <tt>File.chown</tt>. Change owner and group of file.
def chown(owner, group) File.chown(owner, group, @path) end