changeset 4510:59eaa51e43d3

[project @ 2003-09-12 05:32:57 by jwe]
author jwe
date Fri, 12 Sep 2003 05:32:57 +0000
parents 9ec494b3eb5f
children 24af46b4ce84
files src/ChangeLog src/pt-plot.cc
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Sep 11 19:08:26 2003 +0000
+++ b/src/ChangeLog	Fri Sep 12 05:32:57 2003 +0000
@@ -1,5 +1,8 @@
 2003-09-11  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
+	* pt-plot.cc (symbols_of_pt_plot): Default for automatic replot is
+	now true.
+
 	* pr-output.cc (Fformat): Doc fix.
 	(current_output_max_field_width, current_output_precision):
 	New functions.
--- a/src/pt-plot.cc	Thu Sep 11 19:08:26 2003 +0000
+++ b/src/pt-plot.cc	Fri Sep 12 05:32:57 2003 +0000
@@ -1275,13 +1275,14 @@
 void
 symbols_of_pt_plot (void)
 {
-  DEFVAR (automatic_replot, false, automatic_replot,
+  DEFVAR (automatic_replot, true, automatic_replot,
     "-*- texinfo -*-\n\
 @defvr {Built-in Variable} automatic_replot\n\
 You can tell Octave to redisplay the plot each time anything about it\n\
 changes by setting the value of the builtin variable\n\
-@code{automatic_replot} to a nonzero value.  Since this is fairly\n\
-inefficient, the default value is 0.\n\
+@code{automatic_replot} to a nonzero value.  Although it is fairly\n\
+inefficient, especially for large plots, the default value is 1 for\n\
+compatibility with Matlab.\n\
 @end defvr");
 
   DEFVAR (gnuplot_binary, GNUPLOT_BINARY, gnuplot_binary,