# HG changeset patch # User jwe # Date 1115056316 0 # Node ID 165e53a9488d291209ede9cfb7c4a7a6025d3909 # Parent f88f21827fe5f35e9367325e4aed0e42e80e8d0e [project @ 2005-05-02 17:51:56 by jwe] diff -r f88f21827fe5 -r 165e53a9488d src/ChangeLog --- a/src/ChangeLog Mon May 02 17:42:07 2005 +0000 +++ b/src/ChangeLog Mon May 02 17:51:56 2005 +0000 @@ -1,5 +1,9 @@ 2005-05-02 John W. Eaton + * pr-output.cc (octave_print_internal (std::ostream&, + const Range&, bool, int)): Don't print newline at end of rows. + That is handled by pr_col_num_header. + * Makefile.in (octave$(EXEEXT)): List $(UMFPACK_LIBS) ahead of $(BLAS_LIBS). (OCTAVE_LIBS): Include $(GLPK_LIBS) in the list if dynamic linking diff -r f88f21827fe5 -r 165e53a9488d src/pr-output.cc --- a/src/pr-output.cc Mon May 02 17:42:07 2005 +0000 +++ b/src/pr-output.cc Mon May 02 17:51:56 2005 +0000 @@ -1897,9 +1897,6 @@ } col += inc; - - if (col < num_elem) - os << "\n"; } } }