The form-feed character '\f' is no longer valid white space.

This commit is contained in:
Christoffer Lerno
2025-06-13 21:37:06 +02:00
parent e0237096d6
commit 5f6f52838c
2 changed files with 1 additions and 1 deletions

View File

@@ -20,6 +20,7 @@
- Make `$echo` and `@sprintf` correctly stringify compile time initializers and slices.
- Add `--sources` build option to add additional files to compile. #2097
- Support untyped second argument for operator overloading.
- The form-feed character '\f' is no longer valid white space.
### Fixes
- `-2147483648`, MIN literals work correctly.

View File

@@ -273,7 +273,6 @@ static void skip_whitespace(Lexer *lexer)
FALLTHROUGH;
case ' ':
case '\t':
case '\f':
next(lexer);
break;
case '\r':