diff scripts/plot/__go_draw_axes__.m @ 9302:5542c40e40ac

__go_draw_axes__.m: Change strncmpi(scale,'lo') -> strcmp(scale,'log').
author Ben Abbott <bpabbott@mac.com>
date Thu, 04 Jun 2009 21:32:37 -0400
parents f2152fad3563
children 0307f5e5568c
line wrap: on
line diff
--- a/scripts/plot/__go_draw_axes__.m	Thu Jun 04 10:13:14 2009 -0400
+++ b/scripts/plot/__go_draw_axes__.m	Thu Jun 04 21:32:37 2009 -0400
@@ -1611,7 +1611,7 @@
       warned_latex = true;
     endif
   endif
-  if (strncmpi (scale, "lo", 2))
+  if (strcmp (scale, "log"))
     fmt = "10^{%T}";
   else
     fmt = "%g";