math/mpgen: Remove spurious newlines in `mplimits.c'.
[u/mdw/catacomb] / 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");