Mercurial > hg > octave-jordi
comparison libinterp/octave.cc @ 20852:1142cf6abc0d
2015 Code Sprint: remove class of function from docstring for all C++ files.
author | Rik <rik@octave.org> |
---|---|
date | Sat, 12 Dec 2015 07:40:03 -0800 |
parents | 994c0859ab8b |
children | b17fda023ca6 |
comparison
equal
deleted
inserted
replaced
20851:516bb87ea72e | 20852:1142cf6abc0d |
---|---|
199 } | 199 } |
200 } | 200 } |
201 | 201 |
202 DEFUN (__version_info__, args, , | 202 DEFUN (__version_info__, args, , |
203 "-*- texinfo -*-\n\ | 203 "-*- texinfo -*-\n\ |
204 @deftypefn {Built-in Function} {retval =} __version_info__ (@var{name}, @var{version}, @var{release}, @var{date})\n\ | 204 @deftypefn {} {retval =} __version_info__ (@var{name}, @var{version}, @var{release}, @var{date})\n\ |
205 Undocumented internal function.\n\ | 205 Undocumented internal function.\n\ |
206 @end deftypefn") | 206 @end deftypefn") |
207 { | 207 { |
208 octave_value retval; | 208 octave_value retval; |
209 | 209 |
1008 return start_gui; | 1008 return start_gui; |
1009 } | 1009 } |
1010 | 1010 |
1011 DEFUN (isguirunning, args, , | 1011 DEFUN (isguirunning, args, , |
1012 "-*- texinfo -*-\n\ | 1012 "-*- texinfo -*-\n\ |
1013 @deftypefn {Built-in Function} {} isguirunning ()\n\ | 1013 @deftypefn {} {} isguirunning ()\n\ |
1014 Return true if Octave is running in GUI mode and false otherwise.\n\ | 1014 Return true if Octave is running in GUI mode and false otherwise.\n\ |
1015 @seealso{have_window_system}\n\ | 1015 @seealso{have_window_system}\n\ |
1016 @end deftypefn") | 1016 @end deftypefn") |
1017 { | 1017 { |
1018 octave_value retval; | 1018 octave_value retval; |
1030 %!error isguirunning (1) | 1030 %!error isguirunning (1) |
1031 */ | 1031 */ |
1032 | 1032 |
1033 DEFUN (argv, args, , | 1033 DEFUN (argv, args, , |
1034 "-*- texinfo -*-\n\ | 1034 "-*- texinfo -*-\n\ |
1035 @deftypefn {Built-in Function} {} argv ()\n\ | 1035 @deftypefn {} {} argv ()\n\ |
1036 Return the command line arguments passed to Octave.\n\ | 1036 Return the command line arguments passed to Octave.\n\ |
1037 \n\ | 1037 \n\ |
1038 For example, if you invoked Octave using the command\n\ | 1038 For example, if you invoked Octave using the command\n\ |
1039 \n\ | 1039 \n\ |
1040 @example\n\ | 1040 @example\n\ |
1065 %!error argv (1) | 1065 %!error argv (1) |
1066 */ | 1066 */ |
1067 | 1067 |
1068 DEFUN (program_invocation_name, args, , | 1068 DEFUN (program_invocation_name, args, , |
1069 "-*- texinfo -*-\n\ | 1069 "-*- texinfo -*-\n\ |
1070 @deftypefn {Built-in Function} {} program_invocation_name ()\n\ | 1070 @deftypefn {} {} program_invocation_name ()\n\ |
1071 Return the name that was typed at the shell prompt to run Octave.\n\ | 1071 Return the name that was typed at the shell prompt to run Octave.\n\ |
1072 \n\ | 1072 \n\ |
1073 If executing a script from the command line (e.g., @code{octave foo.m})\n\ | 1073 If executing a script from the command line (e.g., @code{octave foo.m})\n\ |
1074 or using an executable Octave script, the program name is set to the\n\ | 1074 or using an executable Octave script, the program name is set to the\n\ |
1075 name of the script. @xref{Executable Octave Programs}, for an example of\n\ | 1075 name of the script. @xref{Executable Octave Programs}, for an example of\n\ |
1092 %!error program_invocation_name (1) | 1092 %!error program_invocation_name (1) |
1093 */ | 1093 */ |
1094 | 1094 |
1095 DEFUN (program_name, args, , | 1095 DEFUN (program_name, args, , |
1096 "-*- texinfo -*-\n\ | 1096 "-*- texinfo -*-\n\ |
1097 @deftypefn {Built-in Function} {} program_name ()\n\ | 1097 @deftypefn {} {} program_name ()\n\ |
1098 Return the last component of the value returned by\n\ | 1098 Return the last component of the value returned by\n\ |
1099 @code{program_invocation_name}.\n\ | 1099 @code{program_invocation_name}.\n\ |
1100 @seealso{program_invocation_name}\n\ | 1100 @seealso{program_invocation_name}\n\ |
1101 @end deftypefn") | 1101 @end deftypefn") |
1102 { | 1102 { |