changeset 6748:c7eb2c149528

[project @ 2007-06-20 17:44:35 by jwe]
author jwe
date Wed, 20 Jun 2007 17:44:35 +0000
parents 392d61107f11
children f7fdea19da88
files scripts/ChangeLog scripts/plot/__go_draw_axes__.m
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Tue Jun 19 20:30:30 2007 +0000
+++ b/scripts/ChangeLog	Wed Jun 20 17:44:35 2007 +0000
@@ -1,3 +1,7 @@
+2007-06-20  John W. Eaton  <jwe@octave.org>
+
+	* plot/__go_draw_axes__.m (do_tics_1): Fix typo (xtic -> tics).
+
 2007-06-19  Vittoria Rezzonico  <vittoria.rezzonico@epfl.ch>
 
 	* sparse/pcg.m: Allow the preconditioner to be passed as two
--- a/scripts/plot/__go_draw_axes__.m	Tue Jun 19 20:30:30 2007 +0000
+++ b/scripts/plot/__go_draw_axes__.m	Wed Jun 20 17:44:35 2007 +0000
@@ -931,8 +931,8 @@
       endif
     else
       fprintf (plot_stream, "set %stics (", ax);
-      fprintf (plot_stream, " %g,", xtic(1:end-1));
-      fprintf (plot_stream, " %g);\n", xtic(end));
+      fprintf (plot_stream, " %g,", tics(1:end-1));
+      fprintf (plot_stream, " %g);\n", tics(end));
     endif
   else
     fprintf (plot_stream, "set %stics;\n", ax);