Mercurial > hg > octave-lyh
diff src/ls-oct-ascii.cc @ 10417:ad29dbbc3f70
save: make that two newline characters
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 16 Mar 2010 17:03:55 -0400 |
parents | f06ede00fd8f |
children | 89f4d7e294cc |
line wrap: on
line diff
--- a/src/ls-oct-ascii.cc +++ b/src/ls-oct-ascii.cc @@ -333,11 +333,11 @@ success = val.save_ascii (os); - // Insert an extra newline after data set so that multiple data - // elements may be handled separately by gnuplot (see the description - // of the index qualifier for the plot command in the gnuplot - // documentation). - os << "\n"; + // Insert an extra pair of newline characters after the data so that + // multiple data elements may be handled separately by gnuplot (see + // the description of the index qualifier for the plot command in the + // gnuplot documentation). + os << "\n\n"; os.precision (old_precision);