Mercurial > hg > octave-thorsten
changeset 11432:da51bc237526
Add additional calling form "shell_cmd" to system() documentation.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Fri, 31 Dec 2010 15:02:57 -0800 |
parents | 0d9640d755b1 |
children | 9f4321024fbf |
files | src/ChangeLog src/toplev.cc |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2010-12-31 Rik <octave@nomad.inbox5.com> + + * toplev.cc (system): Add additional calling form "shell_cmd" to + documentation. + 2010-12-31 Rik <octave@nomad.inbox5.com> * data.cc (islogical, isinteger, iscomplex, isfloat, isempty,
--- a/src/toplev.cc +++ b/src/toplev.cc @@ -829,7 +829,8 @@ DEFUN (system, args, nargout, "-*- texinfo -*-\n\ -@deftypefn {Built-in Function} {[@var{status}, @var{output}]} system (@var{string}, @var{return_output}, @var{type})\n\ +@deftypefn {Built-in Function} {[@var{status}, @var{output}]} system (@var{string}, @var{return_output}, @var{type})\n\ +@deftypefnx {Built-in Function} {[@var{status}, @var{output}]} shell_cmd (@var{string}, @var{return_output}, @var{type})\n\ Execute a shell command specified by @var{string}.\n\ If the optional argument @var{type} is @code{\"async\"}, the process\n\ is started in the background and the process id of the child process\n\