Mercurial > hg > octave-nkf
changeset 19837:3b0b4d55002d
rename __fltk_print__.m to __opengl_print__.m
* __opengl_print__.m: Rename from __fltk_print__.m.
* scripts/plot/util/module.mk (plot_util_PRIVATE_FCN_FILES):
Update list.
* print.m: Call __opengl_print__.m instead of __fltk_print__.m.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 29 Jan 2015 17:13:16 -0500 |
parents | 61cc00ebac60 |
children | 8fe29850fb74 |
files | scripts/plot/util/module.mk scripts/plot/util/print.m scripts/plot/util/private/__fltk_print__.m scripts/plot/util/private/__opengl_print__.m |
diffstat | 3 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/plot/util/module.mk +++ b/scripts/plot/util/module.mk @@ -8,7 +8,6 @@ plot_util_PRIVATE_FCN_FILES = \ plot/util/private/__add_default_menu__.m \ plot/util/private/__fltk_ginput__.m \ - plot/util/private/__fltk_print__.m \ plot/util/private/__ghostscript__.m \ plot/util/private/__gnuplot_get_var__.m \ plot/util/private/__gnuplot_ginput__.m \ @@ -19,6 +18,7 @@ plot/util/private/__gnuplot_version__.m \ plot/util/private/__go_draw_axes__.m \ plot/util/private/__go_draw_figure__.m \ + plot/util/private/__opengl_print__.m \ plot/util/private/__print_parse_opts__.m \ plot/util/private/__tight_eps_bbox__.m
--- a/scripts/plot/util/print.m +++ b/scripts/plot/util/print.m @@ -428,7 +428,7 @@ case "gnuplot" opts = __gnuplot_print__ (opts); otherwise - opts = __fltk_print__ (opts); + opts = __opengl_print__ (opts); endswitch unwind_protect_cleanup
rename from scripts/plot/util/private/__fltk_print__.m rename to scripts/plot/util/private/__opengl_print__.m --- a/scripts/plot/util/private/__fltk_print__.m +++ b/scripts/plot/util/private/__opengl_print__.m @@ -17,11 +17,11 @@ ## <http://www.gnu.org/licenses/>. ## -*- texinfo -*- -## @deftypefn {Function File} {} __fltk_print__ (@var{@dots{}}) +## @deftypefn {Function File} {} __opengl_print__ (@var{@dots{}}) ## Undocumented internal function. ## @end deftypefn -function opts = __fltk_print__ (opts) +function opts = __opengl_print__ (opts) dos_shell = (ispc () && ! isunix ()); @@ -160,7 +160,7 @@ for n = 1:numel (pipeline) if (opts.debug) - fprintf ("fltk-pipeline: '%s'\n", pipeline{n}); + fprintf ("opengl-pipeline: '%s'\n", pipeline{n}); endif drawnow (gl2ps_device{n}, strcat ('|',pipeline{n})); endfor