From: Sven Verdoolaege Date: Mon, 27 Dec 2010 18:35:56 +0000 (+0100) Subject: isl_printer_print_basic_{set,map}: don't print newline in isl format X-Git-Tag: isl-0.06~131 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=980b2398a63c247f7430b8f180763df231c4ef2d;p=platform%2Fupstream%2Fisl.git isl_printer_print_basic_{set,map}: don't print newline in isl format The other printing functions don't print a newline either. Signed-off-by: Sven Verdoolaege --- diff --git a/doc/user.pod b/doc/user.pod index e0eb54b..2f01c13 100644 --- a/doc/user.pod +++ b/doc/user.pod @@ -55,6 +55,15 @@ to C. =back +=head3 Changes since isl-0.05 + +=over + +=item * The functions C and +C no longer print a newline. + +=back + =head1 Installation The source of C can be obtained either as a tarball diff --git a/isl_output.c b/isl_output.c index b2d5625..6cdb1db 100644 --- a/isl_output.c +++ b/isl_output.c @@ -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; }