math/mpgen: Remove spurious newlines in `mplimits.c'.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 6 Aug 2013 17:47:50 +0000 (18:47 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 6 Aug 2013 17:47:50 +0000 (18:47 +0100)
math/mpgen

index 4ed4f16..683970f 100644 (file)
@@ -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");