changeset 6611:9197bb0a2738

[project @ 2007-05-09 16:46:50 by jwe]
author jwe
date Wed, 09 May 2007 16:46:50 +0000
parents fb8bddaa07c4
children 89f3a84a0da1
files scripts/ChangeLog scripts/plot/__go_draw_axes__.m
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Wed May 09 02:28:40 2007 +0000
+++ b/scripts/ChangeLog	Wed May 09 16:46:50 2007 +0000
@@ -1,3 +1,7 @@
+2007-05-09  John W. Eaton  <jwe@octave.org>
+
+	* plot/__go_draw_axes__.m: Break plot command over multiple lines.
+
 2007-05-09  G. D. McBain  <geordie.mcbain@aeromech.usyd.edu.au>
 
 	* statistics/distributions/normcdf.m: Use standard deviation
--- a/scripts/plot/__go_draw_axes__.m	Wed May 09 02:28:40 2007 +0000
+++ b/scripts/plot/__go_draw_axes__.m	Wed May 09 16:46:50 2007 +0000
@@ -652,10 +652,10 @@
  	fputs (plot_stream, "set ticslevel 0;\n");
 	fprintf (plot_stream, "set view %g, %g;\n", rot_x, rot_z);
       endif
-      fprintf (plot_stream, "%s \"-\" %s %s %s", plot_cmd,
+      fprintf (plot_stream, "%s \"-\" %s %s %s \\\n", plot_cmd,
 	       usingclause{1}, titlespec{1}, withclause{1});
       for i = 2:data_idx
-	fprintf (plot_stream, ", \"-\" %s %s %s",
+	fprintf (plot_stream, ", \"-\" %s %s %s \\\n",
 		 usingclause{i}, titlespec{i}, withclause{i});
       endfor
       fputs (plot_stream, ";\n");