1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

commit miss...

* sample/tkextlib/treectrl/explorer.rb: File.executable? returns true
    even if it's plain text file. (this function only checks access right)

again.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8296 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ocean 2005-04-10 05:46:55 +00:00
parent 2d3b81755d
commit 53d7b3df7d

View file

@ -144,11 +144,7 @@ def demoExplorerDetails(t)
when '.txt'
img = 'small-txt'
else
if FileTest.executable?(file)
img = 'small-exe'
else
img = 'small-file'
end
img = 'small-file'
end
type = ext.upcase