# HG changeset patch # User Ben Abbott # Date 1352662694 18000 # Node ID 7ba5ff95467e3524622118d50eff0bee32c7e350 # Parent 63d024333bee2cf191fb4aac2fc3ae434e95e74e Add "gswin64c.exe" to the list of possible ghostscript command line programs under windows. * scripts/plot/private/__print_parse_opts__.m: Include "gswin64c.exe" when looking for ghostscript. diff -r 63d024333bee -r 7ba5ff95467e scripts/plot/private/__print_parse_opts__.m --- a/scripts/plot/private/__print_parse_opts__.m Wed Oct 31 20:46:17 2012 -0700 +++ b/scripts/plot/private/__print_parse_opts__.m Sun Nov 11 14:38:14 2012 -0500 @@ -447,7 +447,7 @@ gs_binaries = horzcat (gs_binaries, {"gs", "gs.exe"}); else ## pc - Includes Win32 and mingw. - gs_binaries = horzcat (gs_binaries, {"gs.exe", "gswin32c.exe", "mgs.exe"}); + gs_binaries = horzcat (gs_binaries, {"gs.exe", "gswin32c.exe", "gswin64c.exe", "mgs.exe"}); endif n = 0; while (n < numel (gs_binaries) && isempty (ghostscript_binary))