value: Drop distinction between long and short string values.
[pspp] / src / data / sys-file-writer.c
index bbe58aecd643a738af8a58591017b18138f2a76c..b655f44073a353737d526a32f0b7159bea2e28c5 100644 (file)
@@ -507,6 +507,7 @@ write_variable (struct sfm_writer *w, const struct variable *v)
 
      Missing values for long string variables are written in a separate
      record. */
+  enum { MAX_SHORT_STRING = 8 };
   if (width <= MAX_SHORT_STRING)
     {
       const struct missing_values *mv = var_get_missing_values (v);