comparison src/graphics.cc @ 13929:9cae456085c2

Grammarcheck of documentation before 3.6.0 release. * accumarray.m, blkdiag.m, nargoutchk.m, nthargout.m, profexplore.m, profile.m, computer.m, orderfields.m, recycle.m, version.m, sqp.m, matlabroot.m, __plt_get_axis_arg__.m, isonormals.m, isosurface.m, __fltk_file_filter__.m, __is_function__.m, __uigetdir_fltk__.m, __uigetfile_fltk__.m, __uiobject_split_args__.m, __uiputfile_fltk__.m, uicontextmenu.m, uiresume.m, uiwait.m, mkpp.m, ppder.m, residue.m, addpref.m, getpref.m, ispref.m, loadprefs.m, prefsfile.m, saveprefs.m, rmpref.m, setpref.m, fftshift.m, bicg.m, bicgstab.m, cgs.m, gmres.m, __sprand_impl__.m, quantile.m, deblank.m, strsplit.m, addtodate.m, bsxfun.cc, kron.cc, regexp.cc, data.cc, file-io.cc, graphics.cc, load-save.cc, mappers.cc: Grammarcheck of documentation before 3.6.0 release.
author Rik <octave@nomad.inbox5.com>
date Wed, 23 Nov 2011 08:38:19 -0800
parents ec435c4d8198
children e48e8253ce58
comparison
equal deleted inserted replaced
13928:2892fd834446 13929:9cae456085c2
9570 "-*- texinfo -*-\n\ 9570 "-*- texinfo -*-\n\
9571 @deftypefn {Built-in Function} {} waitfor (@var{h})\n\ 9571 @deftypefn {Built-in Function} {} waitfor (@var{h})\n\
9572 @deftypefnx {Built-in Function} {} waitfor (@var{h}, @var{prop})\n\ 9572 @deftypefnx {Built-in Function} {} waitfor (@var{h}, @var{prop})\n\
9573 @deftypefnx {Built-in Function} {} waitfor (@var{h}, @var{prop}, @var{value})\n\ 9573 @deftypefnx {Built-in Function} {} waitfor (@var{h}, @var{prop}, @var{value})\n\
9574 @deftypefnx {Built-in Function} {} waitfor (@dots{}, \"timeout\", @var{timeout})\n\ 9574 @deftypefnx {Built-in Function} {} waitfor (@dots{}, \"timeout\", @var{timeout})\n\
9575 Suspends the execution of the current program until a condition is\n\ 9575 Suspend the execution of the current program until a condition is\n\
9576 satisfied on the graphics handle @var{h}. While the program is suspended\n\ 9576 satisfied on the graphics handle @var{h}. While the program is suspended\n\
9577 graphics events are still being processed normally, allowing callbacks to\n\ 9577 graphics events are still being processed normally, allowing callbacks to\n\
9578 modify the state of graphics objects. This function is reentrant and can be\n\ 9578 modify the state of graphics objects. This function is reentrant and can be\n\
9579 called from a callback, while another @code{waitfor} call is pending at\n\ 9579 called from a callback, while another @code{waitfor} call is pending at\n\
9580 top-level.\n\ 9580 top-level.\n\
9581 \n\ 9581 \n\
9582 In the first form, program execution is suspended until the graphics object\n\ 9582 In the first form, program execution is suspended until the graphics object\n\
9583 @var{h} is destroyed. If the graphics handle is invalid, the function\n\ 9583 @var{h} is destroyed. If the graphics handle is invalid, the function\n\
9584 returns immediately.\n\ 9584 returns immediately.\n\
9585 \n\ 9585 \n\
9586 In the second form, execution is suspended until the graphics object is\n\ 9586 In the second form, execution is suspended until the graphics object is\n\
9587 destroyed or the property named @var{prop} is modified. If the graphics\n\ 9587 destroyed or the property named @var{prop} is modified. If the graphics\n\
9588 handle is invalid or the property does not exist, the function returns\n\ 9588 handle is invalid or the property does not exist, the function returns\n\
9589 immediately.\n\ 9589 immediately.\n\
9590 \n\ 9590 \n\
9591 In the third form, execution is suspended until the graphics object is\n\ 9591 In the third form, execution is suspended until the graphics object is\n\
9592 destroyed or the property named @var{prop} is set to @var{value}. The\n\ 9592 destroyed or the property named @var{prop} is set to @var{value}. The\n\
9593 function @code{isequal} is used to compare property values. If the graphics\n\ 9593 function @code{isequal} is used to compare property values. If the graphics\n\
9594 handle is invalid, the property does not exist or the property is already\n\ 9594 handle is invalid, the property does not exist or the property is already\n\
9595 set to @var{value}, the function returns immediately.\n\ 9595 set to @var{value}, the function returns immediately.\n\
9596 \n\ 9596 \n\
9597 An optional timeout can be specified using the property @code{timeout}.\n\ 9597 An optional timeout can be specified using the property @code{timeout}.\n\
9598 This timeout value is the number of seconds to wait for the condition to be\n\ 9598 This timeout value is the number of seconds to wait for the condition to be\n\
9599 true. @var{timeout} must be at least 1. If a smaller value is specified, a\n\ 9599 true. @var{timeout} must be at least 1. If a smaller value is specified, a\n\
9600 warning is issued and a value of 1 is used instead. If the timeout value is\n\ 9600 warning is issued and a value of 1 is used instead. If the timeout value is\n\
9601 not an integer, it is truncated towards 0.\n\ 9601 not an integer, it is truncated towards 0.\n\
9602 \n\ 9602 \n\
9603 To define a condition on a property named @code{timeout}, use the string\n\ 9603 To define a condition on a property named @code{timeout}, use the string\n\
9604 @code{\\timeout} instead.\n\ 9604 @code{\\timeout} instead.\n\
9605 \n\ 9605 \n\