From 84dbb69fc7d58eedd8ba5f89e500a3385713f6df Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 20 Oct 2013 09:36:26 -0700 Subject: [PATCH] csv-file-writer: Use comma as default delimiter. The previous default delimiter was a null byte, which isn't reasonable. (This didn't manifest anywhere because the only existing user of the CSV file writer always overrides the default.) --- src/data/csv-file-writer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/csv-file-writer.c b/src/data/csv-file-writer.c index 4ebff0bd00..684f6baf86 100644 --- a/src/data/csv-file-writer.c +++ b/src/data/csv-file-writer.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc. + Copyright (C) 2010, 2011, 2012, 2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -97,7 +97,7 @@ csv_writer_options_init (struct csv_writer_options *opts) opts->use_value_labels = false; opts->use_print_formats = false; opts->decimal = settings_get_decimal_char (FMT_F); - opts->delimiter = 0; + opts->delimiter = ','; opts->qualifier = '"'; } -- 2.30.2