# HG changeset patch # User John W. Eaton # Date 1296211622 18000 # Node ID 587c99975455cec920ad71b2cb5e08fc71ad7525 # Parent f244ed197b1a0774d9fbe89a6b9e105132da7a89 pr-output.cc: fix @seealso lists diff -r f244ed197b1a -r 587c99975455 src/ChangeLog --- 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 + + * 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 * graphics.cc: Improve reset docstring. diff -r f244ed197b1a -r 587c99975455 src/pr-output.cc --- 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);