Mercurial > hg > octave-nkf
diff scripts/plot/gnuplot_drawnow.m @ 11576:8ac9687dbe9f
rename backend to graphics_toolkit
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 02:29:57 -0500 |
parents | fd0a3ac60b0e |
children | c792872f8942 |
line wrap: on
line diff
--- a/scripts/plot/gnuplot_drawnow.m +++ b/scripts/plot/gnuplot_drawnow.m @@ -117,12 +117,13 @@ ## Generate the gnuplot "set terminal <term> ..." command. ## When "term" originates from print.m, it may include other options. if (nargin < 4) - ## This supports the gnuplot backend. + ## This supports the gnuplot graphics toolkit. term = gnuplot_default_term (); opts_str = ""; else ## Get the one word terminal id and save the remaining as options to - ## be passed on to gnuplot. The terminal may respect the backend. + ## be passed on to gnuplot. The terminal may respect the graphics + ## toolkit. [term, opts_str] = gnuplot_trim_term (term); term = lower (term); if (strcmpi (term, "lua")) @@ -149,7 +150,7 @@ if (! isempty (h) && isfigure (h)) - ## Generate gnuplot title string for backend plot windows. + ## Generate gnuplot title string for plot windows. if (output_to_screen (term) && ~strcmp (term, "dumb")) fig.numbertitle = get (h, "numbertitle"); fig.name = get (h, "name");