We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47af5a4 commit b51d163Copy full SHA for b51d163
+stdlib/+fileio/posix.m
@@ -4,7 +4,7 @@
4
% with "/" even on Windows.
5
% If Windows path also have escaping "\" this breaks
6
arguments
7
- file (1,:) string
+ file string
8
end
9
10
+stdlib/+test/TestFilePure.m
@@ -7,7 +7,7 @@ function test_posix(tc)
if ispc
tc.verifyFalse(contains(posix("c:\foo"), "\"))
- tc.verifyFalse(any(contains(posix(["x:\123", "d:\abc"]), "\")))
+ tc.verifyFalse(all(contains(posix(["x:\123", "d:\abc"]), "\")))
11
12
13
tc.verifyEmpty(posix(string.empty))
0 commit comments