From 01bdd44ef985b28f2c53e96cbc4393b7be0ee3b2 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 15 Sep 2023 23:41:12 +0200 Subject: [PATCH] Modify the previous commit a616a0abe: no spaces in the first column --- src/frontend/plotting/gnuplot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/frontend/plotting/gnuplot.c b/src/frontend/plotting/gnuplot.c index 00f94a220..27f727947 100644 --- a/src/frontend/plotting/gnuplot.c +++ b/src/frontend/plotting/gnuplot.c @@ -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;