# HG changeset patch # User jwe # Date 1182361475 0 # Node ID c7eb2c1495281477168824df0e71238a3682c1e1 # Parent 392d61107f1158676f784461ac228dc71ada94a8 [project @ 2007-06-20 17:44:35 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2007-06-20 John W. Eaton + + * plot/__go_draw_axes__.m (do_tics_1): Fix typo (xtic -> tics). + 2007-06-19 Vittoria Rezzonico * sparse/pcg.m: Allow the preconditioner to be passed as two diff --git a/scripts/plot/__go_draw_axes__.m b/scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m +++ b/scripts/plot/__go_draw_axes__.m @@ -931,8 +931,8 @@ endif else fprintf (plot_stream, "set %stics (", ax); - fprintf (plot_stream, " %g,", xtic(1:end-1)); - fprintf (plot_stream, " %g);\n", xtic(end)); + fprintf (plot_stream, " %g,", tics(1:end-1)); + fprintf (plot_stream, " %g);\n", tics(end)); endif else fprintf (plot_stream, "set %stics;\n", ax);