From 439b453e3aa244e7b824a55aa11768dca3d4a6f4 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 1 Aug 2001 16:49:11 +0000 Subject: * file.c (strrdirsep): removed meaningless code. * file.c (rb_file_s_expand_path): return to 1.66. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1665 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index 2241efa19d..5357163fe8 100644 --- a/file.c +++ b/file.c @@ -1312,9 +1312,6 @@ strrdirsep(path) char *path; { char *last = NULL; -#ifdef DOSISH - if (ISALPHA(path[0]) && path[1] == ':') path += 2; -#endif while (*path) { if (isdirsep(*path)) { last = path++; @@ -1438,12 +1435,6 @@ rb_file_s_expand_path(argc, argv) } b = ++s; } - else { - p = CharNext(p); - *p++ = '.'; - *p = '.'; - if (p >= bend) goto toolong; - } break; case '/': #if defined DOSISH -- cgit v1.2.3