Skip to content

Commit f4de257

Browse files
committed
Do not escape backslashes in TSV by default
This is how the first edition parser worked, and doing so breaks the eurostat package
1 parent eb86522 commit f4de257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/read_delim.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ read_tsv <- function(file, col_names = TRUE, col_types = NULL,
368368
skip_empty_rows = skip_empty_rows,
369369
trim_ws = trim_ws,
370370
escape_double = TRUE,
371-
escape_backslash = TRUE,
371+
escape_backslash = FALSE,
372372
locale = locale,
373373
guess_max = guess_max,
374374
show_col_types = show_col_types,

0 commit comments

Comments
 (0)