Alexandre Julliard pushed to branch master at wine / wine Commits: c673908d by Francis De Brabandere at 2026-05-19T23:19:08+02:00 vbscript: Parse octal numeric literals (&O...). Native cscript accepts &O0, &O17, &O177777, etc. as octal integer literals. Wine was emitting err 1002 (syntax error) for any &O prefix because the lexer only recognised &H. Add an oct_to_int helper and parse_oct_literal allowing up to 32-bit values; overflow uses a ULONGLONG accumulator since 11-digit octal can exceed 32 bits. - - - - - 2 changed files: - dlls/vbscript/lex.c - dlls/vbscript/tests/lang.vbs View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/c673908dfd40771371e733fa8251a97... -- View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/c673908dfd40771371e733fa8251a97... You're receiving this email because of your account on gitlab.winehq.org. Manage all notifications: https://gitlab.winehq.org/-/profile/notifications | Help: https://gitlab.winehq.org/help