+2007-08-27 John Darrinton <john@darrington.wattle.id.au>
+
+ * sys-file-reader.c (read_display_parameters): Force display width
+ to 8, if the sys file says 0 (like SPSS does).
+
2007-08-12 Ben Pfaff <blp@gnu.org>
* dictionary.c (dict_dump): New function.
if (0 == measure && var_is_alpha (v))
measure = 1;
+ /* Older versions (SPSS 9.0) sometimes set the display width
+ to zero. This causes confusion especially in the GUI */
+ if (0 == width)
+ width = 8;
+
if (measure < 1 || measure > 3 || align < 0 || align > 2)
{
if (!warned)