Mercurial > hg > octave-avbm
comparison src/toplev.cc @ 10840:89f4d7e294cc
Grammarcheck .cc files
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 31 Jul 2010 11:18:11 -0700 |
parents | 65bc065bec95 |
children | 51b64b7229e5 |
comparison
equal
deleted
inserted
replaced
10839:65bc065bec95 | 10840:89f4d7e294cc |
---|---|
677 (*octave_exit) (retval == EOF ? 0 : retval); | 677 (*octave_exit) (retval == EOF ? 0 : retval); |
678 } | 678 } |
679 | 679 |
680 DEFUN (quit, args, nargout, | 680 DEFUN (quit, args, nargout, |
681 "-*- texinfo -*-\n\ | 681 "-*- texinfo -*-\n\ |
682 @deftypefn {Built-in Function} {} exit (@var{status})\n\ | 682 @deftypefn {Built-in Function} {} exit (@var{status})\n\ |
683 @deftypefnx {Built-in Function} {} quit (@var{status})\n\ | 683 @deftypefnx {Built-in Function} {} quit (@var{status})\n\ |
684 Exit the current Octave session. If the optional integer value\n\ | 684 Exit the current Octave session. If the optional integer value\n\ |
685 @var{status} is supplied, pass that value to the operating system as the\n\ | 685 @var{status} is supplied, pass that value to the operating system as the\n\ |
686 Octave's exit status. The default value is zero.\n\ | 686 Octave's exit status. The default value is zero.\n\ |
687 @end deftypefn") | 687 @end deftypefn") |
1063 } | 1063 } |
1064 | 1064 |
1065 | 1065 |
1066 DEFUN (atexit, args, nargout, | 1066 DEFUN (atexit, args, nargout, |
1067 "-*- texinfo -*-\n\ | 1067 "-*- texinfo -*-\n\ |
1068 @deftypefn {Built-in Function} {} atexit (@var{fcn})\n\ | 1068 @deftypefn {Built-in Function} {} atexit (@var{fcn})\n\ |
1069 @deftypefnx {Built-in Function} {} atexit (@var{fcn}, @var{flag})\n\ | 1069 @deftypefnx {Built-in Function} {} atexit (@var{fcn}, @var{flag})\n\ |
1070 Register a function to be called when Octave exits. For example,\n\ | 1070 Register a function to be called when Octave exits. For example,\n\ |
1071 \n\ | 1071 \n\ |
1072 @example\n\ | 1072 @example\n\ |
1073 @group\n\ | 1073 @group\n\ |