# HG changeset patch # User Ben Abbott # Date 1352662694 18000 # Node ID 147c819486267892bfd092b2ce8dbd5bc1c1dbc2 # Parent c9c79d4a0a004bb8309374771aa2596fcccee5b7 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 c9c79d4a0a00 -r 147c81948626 scripts/plot/private/__print_parse_opts__.m --- a/scripts/plot/private/__print_parse_opts__.m Sat Oct 13 23:36:37 2012 -0500 +++ b/scripts/plot/private/__print_parse_opts__.m Sun Nov 11 14:38:14 2012 -0500 @@ -477,7 +477,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))