# HG changeset patch # User Ben Abbott # Date 1238722085 14400 # Node ID 3c7a36f80972169344c76ade02a4e1f0997295b6 # Parent 2d85197dbae4401c23fd9b8b3d3408b1652f6b97 __go_draw_axes__.m: Include gnuplot command termination when plotting image. diff -r 2d85197dbae4 -r 3c7a36f80972 scripts/ChangeLog --- 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 + + * plot/__go_draw_axes__.m: Include gnuplot command termination when + plotting image. + 2009-04-02 Ben Abbott * plot/__go_draw_axes__.m: Fix title placement for gnuplot 4.2.x. diff -r 2d85197dbae4 -r 3c7a36f80972 scripts/plot/__go_draw_axes__.m --- 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;