changeset 592:a6ceb977bd95

[project @ 1994-08-09 01:26:57 by jwe]
author jwe
date Tue, 09 Aug 1994 01:26:57 +0000
parents 7563a815389b
children 6f948c6251a9
files src/pt-plot.cc
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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 << ",";
 	}
     }
 }