mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
toml: fix parsing formatting on Windows with crlf line endings (#12468)
This commit is contained in:
parent
a8a1e9381f
commit
78662c800c
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ import toml.token
|
|||
import toml.scanner
|
||||
|
||||
pub const (
|
||||
all_formatting = [token.Kind.whitespace, .tab, .nl]
|
||||
all_formatting = [token.Kind.whitespace, .tab, .cr, .nl]
|
||||
space_formatting = [token.Kind.whitespace, .tab]
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue