changeset 6619:b2b3b0509586

[project @ 2007-05-14 16:32:54 by jwe]
author jwe
date Mon, 14 May 2007 16:32:54 +0000
parents b9bd216661d1
children bf4bdc21dc8d
files scripts/ChangeLog scripts/plot/__go_draw_figure__.m
diffstat 2 files changed, 7 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon May 14 16:21:06 2007 +0000
+++ b/scripts/ChangeLog	Mon May 14 16:32:54 2007 +0000
@@ -1,3 +1,8 @@
+2007-05-14  John W. Eaton  <jwe@octave.org>
+
+	* plot/__go_draw_figure__.m: Ensure that a reset commands starts
+	on a new line.
+
 2007-05-14  Tarmigan Casebolt  <tarmigan+list@gmail.com>
 
 	* statistics/distributions/norminv.m,
--- a/scripts/plot/__go_draw_figure__.m	Mon May 14 16:21:06 2007 +0000
+++ b/scripts/plot/__go_draw_figure__.m	Mon May 14 16:32:54 2007 +0000
@@ -44,7 +44,7 @@
 	  endswitch
 	endfor
 
-	fputs (plot_stream, "reset;\n");
+	fputs (plot_stream, "\nreset;\n");
 
 	multiplot_mode = axes_count > 1;
 
@@ -68,7 +68,7 @@
 	  fputs (plot_stream, "unset multiplot;\n");
 	endif
       else
-	fputs (plot_stream, "reset; clear;\n");
+	fputs (plot_stream, "\nreset; clear;\n");
 	fflush (plot_stream);
       endif
     else