# HG changeset patch # User Ben Abbott # Date 1245363246 14400 # Node ID a00e219c402def38b499d32dfeeeae9af24501d7 # Parent df42106beec886806402c20eefcde3bae8f4cde0 __go_draw_axes__.m: Change the default x11 fontspec from '*,%d' to ',%d'. diff -r df42106beec8 -r a00e219c402d scripts/ChangeLog --- a/scripts/ChangeLog Thu Jun 18 07:51:03 2009 -0400 +++ b/scripts/ChangeLog Thu Jun 18 18:14:06 2009 -0400 @@ -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 -r df42106beec8 -r a00e219c402d scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m Thu Jun 18 07:51:03 2009 -0400 +++ b/scripts/plot/__go_draw_axes__.m Thu Jun 18 18:14:06 2009 -0400 @@ -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);