File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 460d89156f1fcfc9613a578a7c2218308236d212
2
+ refs/heads/master: 0c7545c1ceb96dce7e4ace1718dcb3077f877135
Original file line number Diff line number Diff line change @@ -7,7 +7,13 @@ impure fn list_dir(str path) -> vec[str] {
7
7
ret rustrt. rust_list_files ( path+"*" ) ;
8
8
}
9
9
10
- const char path_sep = '\\' ;
10
+ /* FIXME: win32 path handling actually accepts '/' or '\' and has subtly
11
+ * different semantics for each. Since we build on mingw, we are usually
12
+ * dealing with /-separated paths. But the whole interface to splitting and
13
+ * joining pathnames needs a bit more abstraction on win32. Possibly a vec or
14
+ * tag type.
15
+ */
16
+ const char path_sep = '/' ;
11
17
12
18
// Local Variables:
13
19
// mode: rust;
You can’t perform that action at this time.
0 commit comments