changeset 12271:587c99975455 release-3-4-x

pr-output.cc: fix @seealso lists
author John W. Eaton <jwe@octave.org>
date Fri, 28 Jan 2011 05:47:02 -0500
parents f244ed197b1a
children 9290d2086b5f
files src/ChangeLog src/pr-output.cc
diffstat 2 files changed, 12 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Jan 27 21:43:24 2011 -0800
+++ b/src/ChangeLog	Fri Jan 28 05:47:02 2011 -0500
@@ -1,3 +1,9 @@
+2011-01-28  John W. Eaton  <jwe@octave.org>
+
+	* pr-output.cc (Fformat, Ffixed_point_format, Foutput_precision,
+	Foutput_max_field_width, Fsplit_long_rows, Fprint_empty_dimensions):
+	Update @seealso lists.
+
 2011-01-27  Rik  <octave@nomad.inbox5.com>
 
 	* graphics.cc: Improve reset docstring.
--- a/src/pr-output.cc	Thu Jan 27 21:43:24 2011 -0800
+++ b/src/pr-output.cc	Fri Jan 28 05:47:02 2011 -0500
@@ -3897,6 +3897,7 @@
 Insert blank lines above and below column number labels to produce a more\n\
 readable output with less data per page.  (default).\n\
 @end table\n\
+@seealso{fixed_point_format, output_max_field_width, output_precision, split_long_rows, rats}\n\
 @end deftypefn")
 {
   octave_value_list retval;
@@ -3941,6 +3942,7 @@
 Notice that first value appears to be zero when it is actually 1.  For\n\
 this reason, you should be careful when setting\n\
 @code{fixed_point_format} to a nonzero value.\n\
+@seealso{format, output_max_field_width, output_precision}\n\
 @end deftypefn")
 {
   return SET_INTERNAL_VARIABLE (fixed_point_format);
@@ -3964,6 +3966,7 @@
 @example\n\
 ans = [](3x0)\n\
 @end example\n\
+@seealso{format}\n\
 @end deftypefn")
 {
   return SET_INTERNAL_VARIABLE (print_empty_dimensions);
@@ -3996,6 +3999,7 @@
   0.44672  0.94303  0.56564  0.82150\n\
 @end group\n\
 @end example\n\
+@seealso{format}\n\
 @end deftypefn")
 {
   return SET_INTERNAL_VARIABLE (split_long_rows);
@@ -4007,7 +4011,7 @@
 @deftypefnx {Built-in Function} {@var{old_val} =} output_max_field_width (@var{new_val})\n\
 Query or set the internal variable that specifies the maximum width\n\
 of a numeric output field.\n\
-@seealso{format, output_precision}\n\
+@seealso{format, fixed_point_format, output_precision}\n\
 @end deftypefn")
 {
   return SET_INTERNAL_VARIABLE_WITH_LIMITS (output_precision, 0, INT_MAX);
@@ -4019,7 +4023,7 @@
 @deftypefnx {Built-in Function} {@var{old_val} =} output_precision (@var{new_val})\n\
 Query or set the internal variable that specifies the minimum number of\n\
 significant figures to display for numeric output.\n\
-@seealso{format, output_max_field_width}\n\
+@seealso{format, fixed_point_format, output_max_field_width}\n\
 @end deftypefn")
 {
   return SET_INTERNAL_VARIABLE_WITH_LIMITS (output_precision, -1, INT_MAX);