# HG changeset patch # User jwe # Date 1177522009 0 # Node ID f569cc721d3b73b40b3c06d1861f480c4c5a4b28 # Parent fbc16fe0e86a37f62c18a35e5cc6c3430a18ff73 [project @ 2007-04-25 17:26:49 by jwe] diff -r fbc16fe0e86a -r f569cc721d3b scripts/ChangeLog --- a/scripts/ChangeLog Wed Apr 25 16:04:59 2007 +0000 +++ b/scripts/ChangeLog Wed Apr 25 17:26:49 2007 +0000 @@ -1,5 +1,8 @@ 2007-04-25 John W. Eaton + * plot/__go_draw_axes__.m: For images, set titlespec{data_idx} to + "title \"\"", not "". + * plot/legend.m: Initialize WARNED to false. 2007-04-24 John W. Eaton diff -r fbc16fe0e86a -r f569cc721d3b scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m Wed Apr 25 16:04:59 2007 +0000 +++ b/scripts/plot/__go_draw_axes__.m Wed Apr 25 17:26:49 2007 +0000 @@ -311,7 +311,7 @@ fwrite (plot_stream, [1:palette_size; img_colormap'], "float32"); endif - titlespec{data_idx} = ""; + titlespec{data_idx} = "title \"\""; usingclause{data_idx} = sprintf ("binary array=%dx%d scan=yx origin=(%g,%g) dx=%g dy=%g using %s", x_dim, y_dim, x_origin, y_origin, dx, dy, format); withclause{data_idx} = sprintf ("with %s", imagetype);