# HG changeset patch # User Avinoam # Date 1441081800 -10800 # Tue Sep 01 07:30:00 2015 +0300 # Node ID 0658b4fdb342acf9d079a1b1b903903487e6321d # Parent 2d415c68213f1da2449a131e584b3b3309d3e950 unset y2tics (bug #45822) * __gnuplot_draw_axes__.m: fix a copy paste bug diff -r 2d415c68213f -r 0658b4fdb342 scripts/plot/util/private/__gnuplot_draw_axes__.m --- a/scripts/plot/util/private/__gnuplot_draw_axes__.m Sat Jul 25 13:20:21 2015 +0200 +++ b/scripts/plot/util/private/__gnuplot_draw_axes__.m Tue Sep 01 07:30:00 2015 +0300 @@ -146,7 +146,7 @@ fputs (plot_stream, "unset ytics;\n"); fputs (plot_stream, "unset ztics;\n"); fputs (plot_stream, "unset x2tics;\n"); - fputs (plot_stream, "unset x2tics;\n"); + fputs (plot_stream, "unset y2tics;\n"); if (! isempty (axis_obj.title)) t = get (axis_obj.title);