diff options
Diffstat (limited to 'core/encoding/csv')
| -rw-r--r-- | core/encoding/csv/reader.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/csv/reader.odin b/core/encoding/csv/reader.odin index f8f1d4051..44a9fdcc4 100644 --- a/core/encoding/csv/reader.odin +++ b/core/encoding/csv/reader.odin @@ -248,7 +248,7 @@ _read_record :: proc(r: ^Reader, dst: ^[dynamic]string, allocator := context.all field_length += 1 case '\n', '\r': - if !is_quoted { break read_loop } + is_quoted or_break read_loop case r.comma: field_length = 0 |