diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-08-16 22:16:03 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-08-16 22:16:03 +0200 |
| commit | 3af078e9417274ce7b6fdfa76ebd72ac26f87668 (patch) | |
| tree | 1a3b58ce02044bb1cfdfdcea03ed70c1e135f7d4 /src/parser.cpp | |
| parent | 48c1f0ab590d5f120548a212fff2c762f8818f34 (diff) | |
| parent | 19386814b3ff02914d59ecf20e40191f151d8dbe (diff) | |
Merge branch 'master' into bigint
Diffstat (limited to 'src/parser.cpp')
| -rw-r--r-- | src/parser.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index 8f3ffb8cc..2db8384a7 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -5018,10 +5018,9 @@ AstPackage *try_add_import_path(Parser *p, String const &path, String const &rel gb_global Rune illegal_import_runes[] = { '"', '\'', '`', - // ' ', '\t', '\r', '\n', '\v', '\f', '\\', // NOTE(bill): Disallow windows style filepaths - '!', '$', '%', '^', '&', '*', '(', ')', '=', '+', + '!', '$', '%', '^', '&', '*', '(', ')', '=', '[', ']', '{', '}', ';', ':', // NOTE(bill): Disallow windows style absolute filepaths |