Modify the previous commit a616a0abe:
no spaces in the first column
This commit is contained in:
parent
a616a0abe3
commit
01bdd44ef9
|
|
@ -751,12 +751,12 @@ void ft_writesimple(double *xlims, double *ylims,
|
||||||
struct dvec* scale = v->v_scale;
|
struct dvec* scale = v->v_scale;
|
||||||
/* If wr_singlescale is set, print scale name only in first column */
|
/* If wr_singlescale is set, print scale name only in first column */
|
||||||
if (prscale)
|
if (prscale)
|
||||||
fprintf(file_data, " %s", scale->v_name);
|
fprintf(file_data, "%s ", scale->v_name);
|
||||||
|
|
||||||
if (isreal(v))
|
if (isreal(v))
|
||||||
fprintf(file_data, " %s", v->v_name);
|
fprintf(file_data, "%s ", v->v_name);
|
||||||
else
|
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)
|
if (singlescale)
|
||||||
/* the following names are printed without scale vector names */
|
/* the following names are printed without scale vector names */
|
||||||
prscale = FALSE;
|
prscale = FALSE;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue