ruby-changes:44511
From: naruse <ko1@a...>
Date: Sat, 5 Nov 2016 17:59:46 +0900 (JST)
Subject: [ruby-changes:44511] naruse:r56584 (trunk): rename to noatime?
naruse 2016-11-05 17:59:42 +0900 (Sat, 05 Nov 2016) New Revision: 56584 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=56584 Log: rename to noatime? Modified files: trunk/ext/-test-/file/fs.c Index: ext/-test-/file/fs.c =================================================================== --- ext/-test-/file/fs.c (revision 56583) +++ ext/-test-/file/fs.c (revision 56584) @@ -79,7 +79,7 @@ get_fsname(VALUE self, VALUE str) https://github.com/ruby/ruby/blob/trunk/ext/-test-/file/fs.c#L79 } VALUE -get_atime_p(VALUE self, VALUE str) +get_noatime_p(VALUE self, VALUE str) { #ifdef STATFS statfs_t st; @@ -104,5 +104,5 @@ Init_fs(VALUE module) https://github.com/ruby/ruby/blob/trunk/ext/-test-/file/fs.c#L104 { VALUE fs = rb_define_module_under(module, "Fs"); rb_define_module_function(fs, "fsname", get_fsname, 1); - rb_define_module_function(fs, "atime?", get_atime_p, 1); + rb_define_module_function(fs, "noatime?", get_noatime_p, 1); } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/