diff scripts/plot/graphics_toolkit.m @ 16489:36dba9be680b

doc: Make documentation compatible with Texinfo 5.0 (bug #38392) * scripts/audio/wavread.m, scripts/miscellaneous/getappdata.m, scripts/miscellaneous/license.m, scripts/miscellaneous/ver.m, scripts/plot/daspect.m, scripts/plot/graphics_toolkit.m, scripts/plot/pbaspect.m, scripts/polynomial/polyval.m, scripts/polynomial/splinefit.m, scripts/set/union.m, scripts/signal/freqz.m: Moved @deftypefnx entries to always immediately follow @deftypefn.
author Amod Mulay <amodmulay1@gmail.com>
date Fri, 22 Mar 2013 17:07:00 -0400
parents 72b8b39e12be
children b10a23fe80bb
line wrap: on
line diff
--- a/scripts/plot/graphics_toolkit.m
+++ b/scripts/plot/graphics_toolkit.m
@@ -18,17 +18,23 @@
 
 ## -*- texinfo -*-
 ## @deftypefn {Function File} {@var{name} =} graphics_toolkit ()
-## Return the default graphics toolkit.  The default graphics toolkit value
-## is assigned to new figures.
 ## @deftypefnx {Function File} {@var{name} =} graphics_toolkit (@var{hlist})
-## Return the graphics toolkits for the figures with handles @var{hlist}.
 ## @deftypefnx {Function File} {} graphics_toolkit (@var{name})
-## Set the default graphics toolkit to @var{name}.  If the toolkit is not
-## already loaded, it is initialized by calling the function
-## @code{__init_@var{name}__}.
 ## @deftypefnx {Function File} {} graphics_toolkit (@var{hlist}, @var{name})
-## Set the graphics toolkit for the figures with handles @var{hlist} to
-## @var{name}.
+## 
+## @code{graphics_toolkit (@var{hlist})} returns the default graphics toolkit.  
+## The default graphics toolkit value is assigned to new figures.
+## 
+## @code{graphics_toolkit (@var{name})} returns the graphics toolkits 
+## for the figures with handles @var{hlist}.
+## 
+## @code{graphics_toolkit (@var{name})} sets the default graphics toolkit 
+## to @var{name}.  If the toolkit is not already loaded, it is initialized 
+## by calling the function @code{__init_@var{name}__}.
+## 
+## @code{graphics_toolkit (@var{hlist}, @var{name})} sets the graphics toolkit 
+## for the figures with handles @var{hlist} to @var{name}.
+## 
 ## @seealso{available_graphics_toolkits}
 ## @end deftypefn