# HG changeset patch # User Ronald van der Meer # Date 1353457414 18000 # Node ID 81db2aca1a84b8edc4609b63c31665300766214f # Parent 808e4f13e220cc7fd69f249bcb78eeed0e9736ce Preserve minor ticks when ticklabels are specified (gnuplot only). * scripts/plot/private/__go_draw_axes__.m: Include the "add" option to gnuplot's "set {x,y,z}tic ..." command. (Bug # 33869) * doc/interpreter/contributors.in: Add Ronald van der Meer. diff -r 808e4f13e220 -r 81db2aca1a84 doc/interpreter/contributors.in --- a/doc/interpreter/contributors.in Tue Nov 20 16:17:01 2012 -0500 +++ b/doc/interpreter/contributors.in Tue Nov 20 19:23:34 2012 -0500 @@ -169,6 +169,7 @@ Alexander Mamonov Christoph Mayer JĂșlio Hoffimann Mendes +Ronald van der Meer Thorsten Meyer Petr Mikulik Mike Miller diff -r 808e4f13e220 -r 81db2aca1a84 scripts/plot/private/__go_draw_axes__.m --- a/scripts/plot/private/__go_draw_axes__.m Tue Nov 20 16:17:01 2012 -0500 +++ b/scripts/plot/private/__go_draw_axes__.m Tue Nov 20 19:23:34 2012 -0500 @@ -2150,10 +2150,10 @@ nlabels = numel (labels); fprintf (plot_stream, "set format %s \"%%s\";\n", ax); if (mirror) - fprintf (plot_stream, "set %stics %s %s %s mirror (", ax, + fprintf (plot_stream, "set %stics add %s %s %s mirror (", ax, tickdir, ticklength, axispos); else - fprintf (plot_stream, "set %stics %s %s %s nomirror (", ax, + fprintf (plot_stream, "set %stics add %s %s %s nomirror (", ax, tickdir, ticklength, axispos); endif