segment: Refine treatment of start of macro body.
[pspp] / src / math / interaction.c
index 5dfabe99dd6c0e1ee3aba9d95626cabdf7b6babd..c39a0b4846f9233a36188fd7ed50a13c18788829 100644 (file)
@@ -35,7 +35,7 @@ interaction_create (const struct variable *v)
   struct interaction *iact = xmalloc (sizeof *iact);
   iact->vars = xmalloc (sizeof *iact->vars);
   iact->n_vars = 0;
-  if ( v )
+  if (v)
     {
       iact->vars[0] = v;
       iact->n_vars = 1;
@@ -137,7 +137,7 @@ interaction_to_string (const struct interaction *iact, struct string *str)
     {
       ds_put_cstr (str, var_to_string (iact->vars[v]));
       if (v + 1 < iact->n_vars)
-        ds_put_cstr (str, " * ");
+        ds_put_cstr (str, " × ");
     }
 }