From: Mark Wooding Date: Tue, 6 Aug 2013 17:47:50 +0000 (+0100) Subject: math/mpgen: Remove spurious newlines in `mplimits.c'. X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/commitdiff_plain/c7a23204ba5fac04245b38034751f76fe41e01b6 math/mpgen: Remove spurious newlines in `mplimits.c'. --- diff --git a/math/mpgen b/math/mpgen index 4ed4f16..683970f 100644 --- a/math/mpgen +++ b/math/mpgen @@ -265,7 +265,7 @@ def m_mplimits_c(): i = 0 sep = "\n " for x in v: - stdout.write("%s%s_MP(limits_%d)\n" % (sep, x < 0 and "NEG" or "POS", i)) + stdout.write("%s%s_MP(limits_%d)" % (sep, x < 0 and "NEG" or "POS", i)) i += 1 sep = ",\n " stdout.write("\n};\n");