# HG changeset patch # User Rik # Date 1361718982 28800 # Node ID 8899c785cc992067a185729c6bb5709a5bffc79a # Parent c81b4c81339fd7412b6fcd4a6e0ad961a7eb9fb9 doc: Fix warnings associated with Texinfo 5.0 (bug #38392) * doc/interpreter/octave.texi: Start @end flushright at beginning of new line. * doc/interpreter/plot.txi: Use @itemx after @item in table for markeredgecolor. * doc/interpreter/tips.txi: Eliminate null @item entries in table of variable recommendations. * libinterp/interpfcn/dirfns.cc: Use @itemx instead of @item in table of regexp patterns. * libinterp/interpfcn/file-io.cc: Use @item rather than just formatted text in @table for Endian format. * scripts/io/strread.m: Use @itemx after @item for format %f,%n. * scripts/plot/legend.m: Use @item instead of @itemx in table of options. * scripts/plot/print.m: Use @item instead of @itemx in table of options. * scripts/time/datetick.m: Overhaul docstring. diff -r c81b4c81339f -r 8899c785cc99 doc/interpreter/octave.texi --- a/doc/interpreter/octave.texi Sat Feb 23 12:55:16 2013 +0100 +++ b/doc/interpreter/octave.texi Sun Feb 24 07:16:22 2013 -0800 @@ -90,7 +90,8 @@ @sp 2 @multitable @columnfractions 0.4 0.025 0.65 @item -@flushright @image{octave_logo,2.1in} @end flushright +@flushright @image{octave_logo,2.1in} +@end flushright @tab @c this is a spacer column @tab diff -r c81b4c81339f -r 8899c785cc99 doc/interpreter/plot.txi --- a/doc/interpreter/plot.txi Sat Feb 23 12:55:16 2013 +0100 +++ b/doc/interpreter/plot.txi Sun Feb 24 07:16:22 2013 -0800 @@ -2573,15 +2573,15 @@ A character indicating a plot marker to be place at each data point, or @code{"none"}, meaning no markers should be displayed. -@itemx markeredgecolor +@item markeredgecolor The color of the edge around the marker, or @code{"auto"}, meaning that the edge color is the same as the face color. @xref{Colors}. -@itemx markerfacecolor +@item markerfacecolor The color of the marker, or @code{"none"} to indicate that the marker should not be filled. @xref{Colors}. -@itemx markersize +@item markersize A number specifying the size of the marker. The default is 1. A value of 2 is twice as large as the default, etc. @end table diff -r c81b4c81339f -r 8899c785cc99 doc/interpreter/tips.txi --- a/doc/interpreter/tips.txi Sat Feb 23 12:55:16 2013 +0100 +++ b/doc/interpreter/tips.txi Sun Feb 24 07:16:22 2013 -0800 @@ -296,20 +296,20 @@ When choosing variable names try to adhere to the following guidelines. @table @asis -@item -vectors : x,y,z,t,w +@item vectors : +x,y,z,t,w -@item -matrices : A,B,M +@item matrices : +A,B,M -@item -strings : @nospell{str},s +@item strings : +@nospell{str},s -@item -filenames : @nospell{fname} +@item filenames : +@nospell{fname} -@item -cells,@nospell{cellstrs} : c,@nospell{cstr} +@item cells,@nospell{cellstrs} : +c,@nospell{cstr} @end table @item diff -r c81b4c81339f -r 8899c785cc99 libinterp/interpfcn/dirfns.cc --- a/libinterp/interpfcn/dirfns.cc Sat Feb 23 12:55:16 2013 +0100 +++ b/libinterp/interpfcn/dirfns.cc Sun Feb 24 07:16:22 2013 -0800 @@ -556,9 +556,9 @@ Within a pattern\n\ \n\ @table @code\n\ -@itemx *\n\ +@item *\n\ matches any string, including the null string,\n\ -@itemx ?\n\ +@item ?\n\ matches any single character, and\n\ \n\ @item [@dots{}]\n\ diff -r c81b4c81339f -r 8899c785cc99 libinterp/interpfcn/file-io.cc --- a/libinterp/interpfcn/file-io.cc Sat Feb 23 12:55:16 2013 +0100 +++ b/libinterp/interpfcn/file-io.cc Sun Feb 24 07:16:22 2013 -0800 @@ -646,23 +646,23 @@ The parameter @var{arch} is a string specifying the default data format\n\ for the file. Valid values for @var{arch} are:\n\ \n\ -@table @asis\n\ -@samp{native}\n\ +@table @samp\n\ +@item native\n\ The format of the current machine (this is the default).\n\ \n\ -@samp{ieee-be}\n\ +@item ieee-be\n\ IEEE big endian format.\n\ \n\ -@samp{ieee-le}\n\ +@item ieee-le\n\ IEEE little endian format.\n\ \n\ -@samp{vaxd}\n\ +@item vaxd\n\ VAX D floating format.\n\ \n\ -@samp{vaxg}\n\ +@item vaxg\n\ VAX G floating format.\n\ \n\ -@samp{cray}\n\ +@item cray\n\ Cray floating format.\n\ @end table\n\ \n\ diff -r c81b4c81339f -r 8899c785cc99 scripts/io/strread.m --- a/scripts/io/strread.m Sat Feb 23 12:55:16 2013 +0100 +++ b/scripts/io/strread.m Sun Feb 24 07:16:22 2013 -0800 @@ -39,7 +39,7 @@ ## @item %s ## The word is parsed as a string. ## -## @itemx %f +## @item %f ## @itemx %n ## The word is parsed as a number and converted to double. ## diff -r c81b4c81339f -r 8899c785cc99 scripts/plot/legend.m --- a/scripts/plot/legend.m Sat Feb 23 12:55:16 2013 +0100 +++ b/scripts/plot/legend.m Sun Feb 24 07:16:22 2013 -0800 @@ -87,7 +87,7 @@ ## @item "hide" ## Hide legend on the plot ## -## @itemx "toggle" +## @item "toggle" ## Toggles between "hide" and "show" ## ## @item "boxon" @@ -102,7 +102,7 @@ ## @item "right" ## Place label text to the right of the keys ## -## @itemx "off" +## @item "off" ## Delete the legend object ## @end table ## diff -r c81b4c81339f -r 8899c785cc99 scripts/plot/print.m --- a/scripts/plot/print.m Sat Feb 23 12:55:16 2013 +0100 +++ b/scripts/plot/print.m Sun Feb 24 07:16:22 2013 -0800 @@ -207,11 +207,10 @@ ## is sent to a file the size is determined by the plot box defined by ## the figure's "paperposition" property. ## -## @itemx -append -## Append Postscript or PDF output to a pre-existing file of the -## same type. +## @item -append +## Append Postscript or PDF output to a pre-existing file of the same type. ## -## @itemx -r@var{NUM} +## @item -r@var{NUM} ## Resolution of bitmaps in pixels per inch. For both metafiles and ## SVG the default is the screen resolution; for other formats it is 150 dpi. ## To specify screen resolution, use "-r0". diff -r c81b4c81339f -r 8899c785cc99 scripts/time/datetick.m --- a/scripts/time/datetick.m Sat Feb 23 12:55:16 2013 +0100 +++ b/scripts/time/datetick.m Sun Feb 24 07:16:22 2013 -0800 @@ -22,13 +22,12 @@ ## @deftypefnx {Function File} {} datetick (@var{axis}, @var{form}) ## @deftypefnx {Function File} {} datetick (@dots{}, "keeplimits") ## @deftypefnx {Function File} {} datetick (@dots{}, "keepticks") -## @deftypefnx {Function File} {} datetick (@dots{ax}, @dots{}) -## Add date formatted tick labels to an axis. The axis the apply the -## ticks to is determined by @var{axis} that can take the values "x", -## "y" or "z". The default value is "x". The formatting of the labels is -## determined by the variable @var{form}, that can either be a string in -## the format needed by @code{dateform}, or a positive integer that can -## be accepted by @code{datestr}. +## @deftypefnx {Function File} {} datetick (@var{hax}, @dots{}) +## Add date formatted tick labels to an axis. The axis to apply the +## ticks to is determined by @var{axis} which can take the values "x", +## "y", or "z". The default value is "x". The formatting of the labels is +## determined by the variable @var{form}, which can either be a string or +## positive integer that @code{datestr} accepts. ## @seealso{datenum, datestr} ## @end deftypefn