Changeset 497
- Timestamp:
- 04/17/07 13:14:11 (2 years ago)
- Files:
-
- trunk/hcf/path.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/hcf/path.d
r341 r497 103 103 char[] ret; 104 104 105 // replace any altsep with sep 106 if (altsep.length) { 107 ret = replace(origpath, altsep, sep); 105 version (Windows) { 106 // replace any altsep with sep 107 if (altsep.length) { 108 ret = replace(origpath, altsep, sep); 109 } else { 110 ret = origpath.dup; 111 } 108 112 } else { 109 113 ret = origpath.dup;
