changeset 9083:3c7a36f80972

__go_draw_axes__.m: Include gnuplot command termination when plotting image.
author Ben Abbott <bpabbott@mac.com>
date Thu, 02 Apr 2009 21:28:05 -0400
parents 2d85197dbae4
children b7210faa3ed0
files scripts/ChangeLog scripts/plot/__go_draw_axes__.m
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Thu Apr 02 20:50:50 2009 -0400
+++ b/scripts/ChangeLog	Thu Apr 02 21:28:05 2009 -0400
@@ -1,3 +1,8 @@
+2009-04-02  Ben Abbott <bpabbott@mac.com>
+
+	* plot/__go_draw_axes__.m: Include gnuplot command termination when
+	plotting image.
+
 2009-04-02  Ben Abbott <bpabbott@mac.com>
 
 	* plot/__go_draw_axes__.m: Fix title placement for gnuplot 4.2.x.
--- a/scripts/plot/__go_draw_axes__.m	Thu Apr 02 20:50:50 2009 -0400
+++ b/scripts/plot/__go_draw_axes__.m	Thu Apr 02 21:28:05 2009 -0400
@@ -390,7 +390,7 @@
 	    titlespec{data_idx} = "title \"\"";
 	    usingclause{data_idx} = sprintf ("binary array=%dx%d scan=yx origin=(%.15g,%.15g) dx=%.15g dy=%.15g using %s",
 		x_dim, y_dim, x_origin, y_origin, dx, dy, format);
-	    withclause{data_idx} = sprintf ("with %s", imagetype);
+	    withclause{data_idx} = sprintf ("with %s;", imagetype);
 
 	  else
 	    ximg_data{++ximg_data_idx} = img_data;