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.)
/* 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
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 = '"';
}