# HG changeset patch # User Ben Abbott # Date 1245650184 -7200 # Node ID 59fb9a2d9aca6400c46af4f1ebddd3167116eb05 # Parent 21f9ff16c49aa938d5b6082c319aa237856c63f0 __go_draw_axes__.m: Change the default x11 fontspec from '*,%d' to ',%d'. diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,8 @@ +2009-06-18 Ben Abbott + + * plot/__go_draw_axes__.m: Change the default x11 fontspec from '*,0' + to ',0' to avoid delays searching the fontpath for a font named '*'. + 2009-06-18 Daniel Gualberto * polynomial/mpoles.m: Fix infinite loop for a multiplicity of diff --git a/scripts/plot/__go_draw_axes__.m b/scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m +++ b/scripts/plot/__go_draw_axes__.m @@ -1337,7 +1337,7 @@ endfunction function fontspec = create_fontspec (f, s, gp_term) - if (strcmp (f, "*") && ! strcmp (gp_term, "x11")) + if (strcmp (f, "*")) fontspec = sprintf ("font \",%d\"", s); else fontspec = sprintf ("font \"%s,%d\"", f, s);