Raymond Toy wrote:
> Andrej Vodopivec wrote:
>> gnuplot_command is used in plot2d and plot3d. For the draw package
>> redefine draw_command.
>
> We should unify this if possible, so that the same method can be used
> for both plot2d and draw.
plot2d uses:
(defvar $gnuplot_command (if (string= *autoconf-win32* "true")
"wgnuplot"
"gnuplot"))
and draw uses:
(defvar $draw_command (if (string= *autoconf-win32* "true")
"wgnuplot"
"gnuplot"))
I propose draw should use $gnuplot_command instead of $draw_command. It
appears that both plot2d and draw basically use the corresponding
commands in the same way, I think this will work. I only spent a couple
of minutes looking at this, though.
Ray