# HG changeset patch # User John W. Eaton # Date 1268773435 14400 # Node ID ad29dbbc3f709abd18b61ed65920fbc4bcbbfd70 # Parent f06ede00fd8f9f218f6a770246722d7b684bb36d save: make that two newline characters diff --git a/src/ls-oct-ascii.cc b/src/ls-oct-ascii.cc --- 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);