From f4de2577edcd8e8b077c2f84927d66ce2cdcab38 Mon Sep 17 00:00:00 2001 From: Jim Hester Date: Mon, 9 Aug 2021 08:27:56 -0400 Subject: [PATCH] Do not escape backslashes in TSV by default This is how the first edition parser worked, and doing so breaks the eurostat package --- R/read_delim.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/read_delim.R b/R/read_delim.R index f0a32ef9..f1137628 100644 --- a/R/read_delim.R +++ b/R/read_delim.R @@ -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,