# HG changeset patch # User jwe # Date 776395617 0 # Node ID a6ceb977bd9518eff6fdab61dd188befcd95ba08 # Parent 7563a815389b7fbec77a1579b9ad1206ef62c9f0 [project @ 1994-08-09 01:26:57 by jwe] diff -r 7563a815389b -r a6ceb977bd95 src/pt-plot.cc --- a/src/pt-plot.cc Tue Aug 09 01:20:48 1994 +0000 +++ b/src/pt-plot.cc Tue Aug 09 01:26:57 1994 +0000 @@ -558,14 +558,12 @@ { os << " "; linetype->print_code (os); - os << " "; } if (pointtype) { os << " "; pointtype->print_code (os); - os << " "; } } @@ -664,7 +662,10 @@ subplot::print_code (ostream& os) { if (plot_data) - plot_data->print_code (os); + { + os << " "; + plot_data->print_code (os); + } if (using) using->print_code (os); @@ -715,7 +716,7 @@ elt->print_code (os); if (p) - os << ", "; + os << ","; } } }