diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-20 10:42:57 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-20 10:42:57 +0000 |
| commit | 8008d0f01b9e1fbf3cc93787b574ebdc4a332ecf (patch) | |
| tree | 665707e9f2b7061d3ae9686b2476915be9726f1b | |
| parent | 441d3c06a9b2c9ec35b54a414b6bb41997bb7152 (diff) | |
| download | ruby-8008d0f01b9e1fbf3cc93787b574ebdc4a332ecf.tar.gz ruby-8008d0f01b9e1fbf3cc93787b574ebdc4a332ecf.tar.xz ruby-8008d0f01b9e1fbf3cc93787b574ebdc4a332ecf.zip | |
* file.c (rb_file_s_expand_path): accept drive letter on Cygwin.
* file.c (is_absolute_path): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | file.c | 9 |
2 files changed, 11 insertions, 4 deletions
@@ -1,3 +1,9 @@ +Tue Aug 20 19:39:03 2002 WATANABE Hirofumi <eban@ruby-lang.org> + + * file.c (rb_file_s_expand_path): accept drive letter on Cygwin. + + * file.c (is_absolute_path): ditto. + Tue Aug 20 12:12:25 2002 Tietew <tietew@tietew.net> * io.c (rb_io_putc): output via rb_io_write(). @@ -1463,7 +1463,7 @@ rb_file_s_expand_path(argc, argv) #endif } } -#if defined DOSISH +#if defined DOSISH || defined __CYGWIN__ /* skip drive letter */ else if (ISALPHA(s[0]) && s[1] == ':' && isdirsep(s[2])) { b = s; @@ -1561,7 +1561,7 @@ rb_file_s_expand_path(argc, argv) memcpy(++p, b, s-b); p += s-b; } -#if defined(DOSISH) +#if defined DOSISH || defined __CYGWIN__ else if (ISALPHA(buf[0]) && (buf[1] == ':') && isdirsep(buf[2])) { /* root directory needs a trailing backslash, otherwise it mean the current directory of the drive */ @@ -2318,10 +2318,11 @@ static int is_absolute_path(path) const char *path; { -#ifdef DOSISH +#if defined DOSISH || defined __CYGWIN__ if (ISALPHA(path[0]) && path[1] == ':' && isdirsep(path[2])) return 1; if (isdirsep(path[0]) && isdirsep(path[1])) return 1; -#else +#endif +#ifndef DOSISH if (path[0] == '/') return 1; #endif return 0; |
