Skip to content

Commit

Permalink
Do not escape backslashes in TSV by default
Browse files Browse the repository at this point in the history
This is how the first edition parser worked, and doing so breaks the
eurostat package
  • Loading branch information
jimhester committed Aug 9, 2021
1 parent eb86522 commit f4de257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/read_delim.R
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ read_tsv <- function(file, col_names = TRUE, col_types = NULL,
skip_empty_rows = skip_empty_rows,
trim_ws = trim_ws,
escape_double = TRUE,
escape_backslash = TRUE,
escape_backslash = FALSE,
locale = locale,
guess_max = guess_max,
show_col_types = show_col_types,
Expand Down

0 comments on commit f4de257

Please sign in to comment.