Modify the previous commit a616a0abe:

no spaces in the first column
This commit is contained in:
Holger Vogt 2023-09-15 23:41:12 +02:00
parent a616a0abe3
commit 01bdd44ef9
1 changed files with 3 additions and 3 deletions

View File

@ -751,12 +751,12 @@ void ft_writesimple(double *xlims, double *ylims,
struct dvec* scale = v->v_scale;
/* If wr_singlescale is set, print scale name only in first column */
if (prscale)
fprintf(file_data, " %s", scale->v_name);
fprintf(file_data, "%s ", scale->v_name);
if (isreal(v))
fprintf(file_data, " %s", v->v_name);
fprintf(file_data, "%s ", v->v_name);
else
fprintf(file_data, " %s %s", v->v_name, v->v_name);
fprintf(file_data, "%s %s ", v->v_name, v->v_name);
if (singlescale)
/* the following names are printed without scale vector names */
prscale = FALSE;