diff options
Diffstat (limited to 'src/stdlib')
| -rw-r--r-- | src/stdlib/paths.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/stdlib/paths.c b/src/stdlib/paths.c index dcedcd03..841b7a7c 100644 --- a/src/stdlib/paths.c +++ b/src/stdlib/paths.c @@ -57,8 +57,6 @@ Path_t Path$from_str(const char *str) { else if (streq(str, "~")) return HOME_PATH; else if (streq(str, ".")) return CURDIR_PATH; - if (strchr(str, ';') != NULL) fail("Path has illegal character (semicolon): ", str); - Path_t result = {}; if (str[0] == '/') { result.$tag = Path$tag$AbsolutePath; |
