isl_printer_print_basic_{set,map}: don't print newline in isl format
authorSven Verdoolaege <skimo@kotnet.org>
Mon, 27 Dec 2010 18:35:56 +0000 (19:35 +0100)
committerSven Verdoolaege <skimo@kotnet.org>
Wed, 29 Dec 2010 10:57:49 +0000 (11:57 +0100)
The other printing functions don't print a newline either.

Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
doc/user.pod
isl_output.c

index e0eb54b..2f01c13 100644 (file)
@@ -55,6 +55,15 @@ to C<isl/header.h>.
 
 =back
 
+=head3 Changes since isl-0.05
+
+=over
+
+=item * The functions C<isl_printer_print_basic_set> and
+C<isl_printer_print_basic_map> no longer print a newline.
+
+=back
+
 =head1 Installation
 
 The source of C<isl> can be obtained either as a tarball
index b2d5625..6cdb1db 100644 (file)
@@ -650,7 +650,6 @@ static __isl_give isl_printer *isl_basic_map_print_isl(
        p = isl_printer_print_str(p, " : ");
        p = print_disjunct(bmap, bmap->dim, p, 0, latex);
        p = isl_printer_print_str(p, " }");
-       p = isl_printer_end_line(p);
        return p;
 }
 
@@ -669,7 +668,6 @@ static __isl_give isl_printer *isl_basic_set_print_isl(
        p = isl_printer_print_str(p, " : ");
        p = print_disjunct((isl_basic_map *)bset, bset->dim, p, 1, latex);
        p = isl_printer_print_str(p, " }");
-       p = isl_printer_end_line(p);
        return p;
 }