aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--lib/pathname.rb2
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 772776f184..2a5699496e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,6 @@
-Sat Oct 11 15:41:06 2003 Tanaka Akira <akr@m17n.org>
+Sat Oct 11 16:08:41 2003 Tanaka Akira <akr@m17n.org>
+
+ * lib/pathname.rb (realpath): check existence of the file.
* lib/pathname.rb (realpath): re-implemented.
(realpath_root?, realpath_rec): removed
diff --git a/lib/pathname.rb b/lib/pathname.rb
index 7bd007a2c8..9ececcb074 100644
--- a/lib/pathname.rb
+++ b/lib/pathname.rb
@@ -123,7 +123,7 @@ class Pathname
resolved.unshift unresolved.pop
else
path = top + unresolved.join('/')
- if FileTest.symlink? path
+ if File.lstat(path).symlink?
link = File.readlink(path)
if %r{\A/} =~ link
top = '/'