From 7482a403be8b940b2c8c6410798d6b32655a53c2 Mon Sep 17 00:00:00 2001 From: eblondel Date: Mon, 28 Oct 2019 10:05:09 +0100 Subject: [PATCH] #21 set default line separator to '_\n' --- R/geoflow_utils.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/geoflow_utils.R b/R/geoflow_utils.R index e126b291..e9ba2e2c 100644 --- a/R/geoflow_utils.R +++ b/R/geoflow_utils.R @@ -110,7 +110,7 @@ extract_cell_components <- function(x){ #'set_line_separator #'@export -set_line_separator <- function(x = ";\n"){ +set_line_separator <- function(x = "_\n"){ if(!is(x,"character")) stop("The line separator should be an object of class 'character'") .geoflow$LINE_SEPARATOR <- x }