Mercurial > hg > octave-nkf
diff scripts/plot/private/__print_parse_opts__.m @ 15610:7ba5ff95467e stable
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.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Sun, 11 Nov 2012 14:38:14 -0500 |
parents | d174210ce1ec |
children | 773892abfd93 |
line wrap: on
line diff
--- a/scripts/plot/private/__print_parse_opts__.m +++ b/scripts/plot/private/__print_parse_opts__.m @@ -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))