[前][次][番号順一覧][スレッド一覧]

ruby-changes:16974

From: akr <ko1@a...>
Date: Thu, 12 Aug 2010 21:19:14 +0900 (JST)
Subject: [ruby-changes:16974] Ruby:r28971 (trunk): * ext/pathname/pathname.c (path_lstat): Pathname#lstat translated

akr	2010-08-12 21:18:44 +0900 (Thu, 12 Aug 2010)

  New Revision: 28971

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28971

  Log:
    * ext/pathname/pathname.c (path_lstat): Pathname#lstat translated
      from pathname.rb.

  Modified files:
    trunk/ChangeLog
    trunk/ext/pathname/lib/pathname.rb
    trunk/ext/pathname/pathname.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 28970)
+++ ChangeLog	(revision 28971)
@@ -1,3 +1,8 @@
+Thu Aug 12 21:18:27 2010  Tanaka Akira  <akr@f...>
+
+	* ext/pathname/pathname.c (path_lstat): Pathname#lstat translated
+	  from pathname.rb.
+
 Thu Aug 12 05:58:09 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* include/ruby/encoding.h (rb_char_to_option_kcode): used in
Index: ext/pathname/lib/pathname.rb
===================================================================
--- ext/pathname/lib/pathname.rb	(revision 28970)
+++ ext/pathname/lib/pathname.rb	(revision 28971)
@@ -512,9 +512,6 @@
 
 class Pathname    # * File *
 
-  # See <tt>File.lstat</tt>.
-  def lstat() File.lstat(@path) end
-
   # See <tt>File.symlink</tt>.  Creates a symbolic link.
   def make_symlink(old) File.symlink(old, @path) end
 
Index: ext/pathname/pathname.c
===================================================================
--- ext/pathname/pathname.c	(revision 28970)
+++ ext/pathname/pathname.c	(revision 28971)
@@ -385,6 +385,15 @@
 }
 
 /*
+ * See <tt>File.lstat</tt>.
+ */
+static VALUE
+path_lstat(VALUE self)
+{
+    return rb_funcall(rb_cFile, rb_intern("lstat"), 1, get_strpath(self));
+}
+
+/*
  * == Pathname
  *
  * Pathname represents a pathname which locates a file in a filesystem.
@@ -599,4 +608,5 @@
     rb_define_method(rb_cPathname, "readlink", path_readlink, 0);
     rb_define_method(rb_cPathname, "rename", path_rename, 1);
     rb_define_method(rb_cPathname, "stat", path_stat, 0);
+    rb_define_method(rb_cPathname, "lstat", path_lstat, 0);
 }

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]