mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* file.c (test_l): fix wrong method name in document.
(test_S): ditto. (test_b): ditto. (test_c): ditto. (test_suid): ditto. (test_sgid): ditto. (test_sticky): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1a235738a8
commit
40f9219a8b
2 changed files with 17 additions and 7 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
Wed Feb 4 02:12:06 2004 Tanaka Akira <akr@m17n.org>
|
||||
|
||||
* file.c (test_l): fix wrong method name in document.
|
||||
(test_S): ditto.
|
||||
(test_b): ditto.
|
||||
(test_c): ditto.
|
||||
(test_suid): ditto.
|
||||
(test_sgid): ditto.
|
||||
(test_sticky): ditto.
|
||||
|
||||
Tue Feb 3 22:36:25 2004 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* lib/rss/2.0.rb, lib/rss/content.rb, lib/rss/dublincore.rb,
|
||||
|
|
14
file.c
14
file.c
|
@ -822,7 +822,7 @@ test_p(obj, fname)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* File.pipe?(file_name) => true or false
|
||||
* File.symlink?(file_name) => true or false
|
||||
*
|
||||
* Returns <code>true</code> if the named file is a symbolic link.
|
||||
*/
|
||||
|
@ -858,7 +858,7 @@ test_l(obj, fname)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* File.pipe?(file_name) => true or false
|
||||
* File.socket?(file_name) => true or false
|
||||
*
|
||||
* Returns <code>true</code> if the named file is a socket.
|
||||
*/
|
||||
|
@ -893,7 +893,7 @@ test_S(obj, fname)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* File.pipe?(file_name) => true or false
|
||||
* File.blockdev?(file_name) => true or false
|
||||
*
|
||||
* Returns <code>true</code> if the named file is a block device.
|
||||
*/
|
||||
|
@ -922,7 +922,7 @@ test_b(obj, fname)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* File.pipe?(file_name) => true or false
|
||||
* File.chardev?(file_name) => true or false
|
||||
*
|
||||
* Returns <code>true</code> if the named file is a character device.
|
||||
*/
|
||||
|
@ -1260,7 +1260,7 @@ check3rdbyte(fname, mode)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* File.pipe?(file_name) => true or false
|
||||
* File.setuid?(file_name) => true or false
|
||||
*
|
||||
* Returns <code>true</code> if the named file is a has the setuid bit set.
|
||||
*/
|
||||
|
@ -1278,7 +1278,7 @@ test_suid(obj, fname)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* File.pipe?(file_name) => true or false
|
||||
* File.setgid?(file_name) => true or false
|
||||
*
|
||||
* Returns <code>true</code> if the named file is a has the setgid bit set.
|
||||
*/
|
||||
|
@ -1296,7 +1296,7 @@ test_sgid(obj, fname)
|
|||
|
||||
/*
|
||||
* call-seq:
|
||||
* File.pipe?(file_name) => true or false
|
||||
* File.sticky?(file_name) => true or false
|
||||
*
|
||||
* Returns <code>true</code> if the named file is a has the sticky bit set.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue